Reload most of Geany's configuration files without restarting, as menu item "Tools"->"Reload Configuration" or ```geany.reload_configuration()``` [from GeanyPy](https://geanypy.readthedocs.io/en/latest/api.html#geany.reload_configuration).
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/653
-- Commit Summary --
* GeanyLua: Add filetype to set in geany.newfile()
* GeanyLua: Add function geany.reloadconf() (reload most of Geany's configuration files without restarting, as menu item Tools->Reload Configuration)
-- File Changes --
M geanylua/docs/geanylua-ref.html (45)
M geanylua/glspi_app.c (36)
M geanylua/glspi_doc.c (17)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/653.patchhttps://github.com/geany/geany-plugins/pull/653.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/653
I represent your attention AutoIt support, it result [Issues #967](https://github.com/geany/geany/issues/967)
P.S. au3.tags ready.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1017
-- Commit Summary --
* Add AutoIt syntax highlighting
-- File Changes --
M data/Makefile.am (3)
A data/filedefs/filetypes.autoit (98)
M data/filetype_extensions.conf (1)
M scintilla/Makefile.am (1)
A scintilla/lexers/LexAU3.cxx (910)
M scintilla/scintilla_changes.patch (4)
M scintilla/src/Catalogue.cxx (1)
M src/filetypes.c (1)
M src/filetypes.h (1)
M src/highlighting.c (9)
M src/highlightingmappings.h (35)
-- Patch Links --
https://github.com/geany/geany/pull/1017.patchhttps://github.com/geany/geany/pull/1017.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/1017
Originally it was just possible to choose between the GPLv2 and the 3-clause BSD.
Now users can also choose between the GPLv3 and AGPLv3 when adding a licence comment to a file.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1331
-- Commit Summary --
* Added possibility to choose between GPLv2 and 3 when adding licence comment to file
* Merge my local changes into master
* Reformatted a line of code
* Renamed some identifiers to clarify with wich values they are handling.
* Added possibility to choose AGPLv3 when adding licence comment
-- File Changes --
M data/Makefile.am (4)
M data/geany.glade (48)
A data/templates/agplv3 (12)
M data/templates/fileheader (2)
R data/templates/gplv2 (0)
A data/templates/gplv3 (12)
M src/callbacks.c (32)
M src/templates.c (13)
M src/templates.h (4)
-- Patch Links --
https://github.com/geany/geany/pull/1331.patchhttps://github.com/geany/geany/pull/1331.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/1331
It's continuation of the discussion #646 . Code example:
```lua
local s = geany.selection();
if (s ~= "") and (s ~= nil) then
local t = geany.fileinfo();
geany.newfile("", t.type);
geany.selection(s);
end
```
Old/current scripts don't need to be updated, they will still work!
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/652
-- Commit Summary --
* GeanyLua: Add filetype to set in geany.newfile()
-- File Changes --
M geanylua/docs/geanylua-ref.html (24)
M geanylua/glspi_doc.c (17)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/652.patchhttps://github.com/geany/geany-plugins/pull/652.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/652
If a setting has a project override changing it in the preferences dialog will appear to not work, but its not visible that this is because of the project override. The user must be aware that the project overrides, but it does so for only some settings so its easy to forget which ones they are.
The preferences dialog should indicate those preferences overridden by project settings.
--
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/1363
![numberspacing](https://cloud.githubusercontent.com/assets/7548378/18925682/d83a5708-85ac-11e6-8838-1bc11b24e47a.png)
Please consider removing the blank space to the left of the line numbers. Thanks!
--
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/1247