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
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
Underline color for warnings should differ from color of errors, for example color of erros is red, color of warnings is orange Currently it's red for both
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/864
Hi,
is there any chance to add Lexer for [AutoIt3 scripting language](https://www.autoitscript.com/site/autoit/) to Geany? I am ready to help with a _filetypes.au3_ and _au3.tags_.
Regards,
P.S. _LexAU3.cxx_ in the source of Scintilla is old (Jul 26, 2007), but it works (as well as au3.properties).
[There is a new version](https://bitbucket.org/scite-ru/scite-ru.bitbucket.org/src/53d62fc5… (Sep 05, 2013). I tried to compile SciTE 3.6.4 with new version: it's works on Windows XP SP3 (MinGW), but there are some weird problems with ends commentblock on Xubuntu 14.04. I seem to find the problem and wrote the author.
---
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/967
Is it also possible to change the color scheme in symbols (left) and compilers (down of the page) window?
How could i do this?
---
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/1006
I hate the overlay scrollbars as I find I have to hunt for them, so they are disabled. To over come the missing items that used to come with fallback/flashback Gnome desktop I use 2 sections of code to bring back functionality.
'gtk-widgets.css'
usually in the Theme section of the current theme
`/*************
* scrollbar *
*************/
.scrollbar,
.scrollbar.vertical {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 16;
-GtkRange-stepper-size: 16;
-GtkRange-stepper-spacing: 0;
-GtkRange-trough-border: 0;
-GtkScrollbar-min-slider-length: 30;
border-radius: 20px;
border-image: none;
}
.scrollbar.trough,
.scrollbar.trough.vertical {
border-color: shade (@bg_color, 0.8);
}
.scrollbar.slider,
.scrollbar.slider:hover,
.scrollbar.button,
.scrollbar.slider.vertical,
.scrollbar.slider.vertical:hover,
.scrollbar.button.vertical {
border-width: 1px;
border-style: solid;
border-color: shade (@bg_color, 0.86);
background-image: -gtk-gradient (linear, left top, right top,
from (shade (#BDE3F0, 1.08)),
color-stop (0.5, #BDE3F0),
to (shade (#BDE3F0, 0.94)));
box-shadow: inset 1px 0 shade (@bg_color, 1.1),
inset -1px 0 shade (@bg_color, 1.01),
inset 0 1px shade (@bg_color, 1.1),
inset 0 -1px shade (@bg_color, 1.1);
}
.scrollbar.slider.horizontal,
.scrollbar.slider.horizontal:hover,
.scrollbar.button.horizontal {
background-image: -gtk-gradient (linear, left top, left bottom,
from (shade (#BDE3F0, 1.08)),
color-stop (0.5, #BDE3F0),
to (shade (#BDE3F0, 0.94)));
box-shadow: inset 1px 0 shade (@bg_color, 1.1),
inset -1px 0 shade (@bg_color, 1.1),
inset 0 1px shade (@bg_color, 1.1),
inset 0 -1px shade (@bg_color, 1.01);
}
/* overlay scrollbar */
OsThumb {
color: shade (@fg_color, 1.6);
}`
and 'gtk.css'
in the .config/gtk-3.0 section and /gtk-2.0 section
`/**************
* Scrollbars *
**************/
.scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 16;
-GtkRange-stepper-size: 16;
-GtkRange-stepper-spacing: 0;
-GtkRange-trough-border: 0;
-GtkScrollbar-min-slider-length: 30;
}`
Perhaps I do not know where to put these for Geany?
Thanks James Niland
--
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/1226