Hi all,
I am using Geany v1.37.1 in Win10 x64. Currently vertical scrolling is super fast. I need to reduce this. Please help. Thanks in advance.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2768
The latest version (1.30) in PHP don't autocomplete **require**.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1436
This PR adds an option to hide the menubar at startup and a keybinding to toggle menubar visibility. Addresses #633.
Currently, there is no default keybinding set to toggle the menubar. This complicates reshowing the menubar if it is hidden at startup. A common key combination to toggle menubar visibility is `<Primary>m`, but that is already being used to toggle markers. Should the keybinding be reassigned? If not, what other keybinding should be used?
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2972
-- Commit Summary --
* <a href="https://github.com/geany/geany/pull/2972/commits/c2076abb31c4ffd44dbad845d3…">Add option to hide menubar on startup</a>
-- File Changes --
M doc/geany.txt (1)
M src/keybindings.c (11)
M src/keybindings.h (2)
M src/libmain.c (5)
M src/plugindata.h (2)
M src/ui_utils.c (2)
M src/ui_utils.h (1)
-- Patch Links --
https://github.com/geany/geany/pull/2972.patchhttps://github.com/geany/geany/pull/2972.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2972
Should there be one? A Checkbutton for "Line breaking" in Preferences/ Editor / Features , besides "Line breaking column" or besides "Line wrapping" ?
It's tedious to remember and toggle that per document every time.
Or maybe there is a way, unknown to me, to modify some start-up file to tell Geany to open with Line breaking on in menu/Document ?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1946
This is mostly my preference but I think it would be quite useful to have file search feature similar to sublime or vscode etc.
So, I used codebase of commander mostly and modified it.
Basically:
- Find File keyboard shortcut with open a dialog with input and search against files and showing them
- Enter would open the file
- Workflow from UI would be as is and this is only based on keyboard shortcut
P.S. This is mostly a proof of concept and I think someone with better knowledge of gtk, C and geany api can pull this off better than what I currently have.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/953
-- Commit Summary --
* just a proof of concept of file search through kb different than sidebar with type and open
-- File Changes --
M projectorganizer/src/prjorg-menu.c (355)
M projectorganizer/src/prjorg-sidebar.c (14)
M projectorganizer/src/prjorg-sidebar.h (8)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/953.patchhttps://github.com/geany/geany-plugins/pull/953.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/953
This is a small set of changes in the Debugger plugin to support gdb's remote mode (using gdbserver on the remote side). An additional cross development mode launches gdb-multiarch instead of gdb, so that an amd64 workstation can be used to debug a target running on an ARM board, or any other combination supported by gdb-multiarch.
Large portion of the changes is to adjust the debugger Target page, so that the debug mode is explicit and visible. In addition the label flip-flop between Command line Arguments and Remote Address to reflect how the field is actually used.
The `--multi` option of gdbserver is not supported. Doing so might require modifying the GUI, among other impacts.
A French translation is provided for the new labels. Since I am not familiar with the internationalization tools, I just hand-made a few more entries. Feel free to correct if that was not the right way.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/1162
-- Commit Summary --
* Add remote and cross development debugging modes to the Debugger plugin
* Update documentation
* Follow European date format, as for other entries
-- File Changes --
M debugger/ChangeLog (4)
M debugger/README (1)
M debugger/src/dbm_gdb.c (59)
M debugger/src/dconfig.c (3)
M debugger/src/debug.c (6)
M debugger/src/debug_module.h (2)
M debugger/src/tpage.c (69)
M debugger/src/tpage.h (4)
M po/fr.po (20)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/1162.patchhttps://github.com/geany/geany-plugins/pull/1162.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1162
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1162(a)github.com>
Adds optional linewrapping in the status-, compiler- and message-tab of the message window.
Mainly useful with a vertical layout, but still has some issues:
- on_width_change() is called continuously while resizing the message window,
(I did not notice any impact on CPU usage though).
- when changing the setting, messages already present are not wrapped / unwrapped,
only newly printed ones.
- when resizing the window, messages already present are wrapped only until
a new line would be required (but new messages work fine).
- Only very minor, but GTK word wrap treats the minus preceding command line arguments
as separate words (-> 'gcc -Wall' can become 'gcc -\nWall')
I hope it's not rude to make a pull request directly without first opening a corresponding issue.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1383
-- Commit Summary --
* Add option for linewrapping in message window
* Correct minor inconsistency: return type not on same line as function
-- File Changes --
M data/geany.glade (96)
M doc/geany.txt (4)
M src/keyfile.c (2)
M src/msgwindow.c (57)
M src/msgwindow.h (2)
M src/prefs.c (7)
M src/ui_utils.h (1)
-- Patch Links --
https://github.com/geany/geany/pull/1383.patchhttps://github.com/geany/geany/pull/1383.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1383