Re: [Github-comments] [geany/geany] Easier project creation (#2245)

2020-05-19 Thread Ellie
To make a concrete UI suggestion, I think the file menu could be changed to: ``` New File New File (with template) >... Open Folder as Project... Open File... Open Selected File Recent Files ``` ... and the `Properties` entry expanded to a sub menu: ``` Properties > Current File Properties > Proje

[Github-comments] [geany/geany-plugins] Sundry fixes and enhancements to the keystrokes recorder plugin (#980)

2020-05-19 Thread Austin Green
Uses the Geany "key-press" signal, allowing access to all keys, including bound ones. Fixes a bug that prevent the use of bound keys without modifiers. Prevents playback during recording. Displays recording indicator on the status bar. You can view, comment on, or merge this pull request online at

Re: [Github-comments] [geany/geany-plugins] Sundry fixes and enhancements to the keystrokes recorder plugin (#980)

2020-05-19 Thread Matthew Brush
You should compile with at least `-Wall -Wextra -Werror` and make sure there's no warnings/errors. Sometimes it's useful to add `-Wno-unused-parameter` and `-DGLIB_DISABLE_DEPRECATION_WARNINGS ` to filter out the noise. You can also change into the plugin directory and do `make` from there to av

Re: [Github-comments] [geany/geany-plugins] Sundry fixes and enhancements to the keystrokes recorder plugin (#980)

2020-05-19 Thread Austin Green
On Tue, 19 May 2020 21:48:05 -0700 Matthew Brush wrote: > You should compile with at least `-Wall -Wextra -Werror` and make sure > there's no warnings/errors. Sometimes it's useful to add > `-Wno-unused-parameter` and `-DGLIB_DISABLE_DEPRECATION_WARNINGS ` to filter > out the noise. You can al