- 23 Haz, 2013 3 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
The test results were auto-generated and not manually checked, so they may be inaccurate. They should be fixed if appropriate if they start to fail, e.g. when modifying the relevant parser. CTags' tests that didn't pass weren't imported, but probably should be added an the relevant parser fixed.
-
Colomban Wendling yazdı
-
- 15 Haz, 2013 1 kayıt (commit)
-
-
Matthew Brush yazdı
This function is used in File Browser plugin and in Tree Browser, GProject, and GeanyPrj plugins from Geany-Plugins.
-
- 10 Haz, 2013 1 kayıt (commit)
-
-
Frank Lanitz yazdı
break is keyword in pascal
-
- 09 Haz, 2013 2 kayıt (commit)
-
-
Matthew Brush yazdı
-
Mislav Blažević yazdı
-
- 08 Haz, 2013 3 kayıt (commit)
-
-
Ilario Pierbattista yazdı
Closes #936.
-
Dimitar Zhekov yazdı
-
Braden Walters yazdı
Closes #924.
-
- 07 Haz, 2013 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Dimitar Zhekov yazdı
-
- 06 Haz, 2013 4 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
elextr yazdı
js.c only allowed keywords 'function' 'Function' or 'Object' after 'new' but js syntax allows any constructor function: var name = new constructor_function( args ); ie an identifier where js.c allowed only keywords. So changed js.c to allow any identifier as well as the keywords.
-
- 05 Haz, 2013 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 02 Haz, 2013 1 kayıt (commit)
-
-
Colomban Wendling yazdı
C-style multiline comments, used among others in C, C++ and Java, are often continued on next lines with an additional space followed by an asterisk: 1. /* first comment line 2. * continuation line (asterisk is aligned with previous line) 3. * last line */ This fools the indentation with detection because lines 2 and 3 from the above example have an extra space in what is considered being the line indentation. In this example, the algorithm would detect an indentation width of 5 rather than 4, because here most lines have an indent of 5 -- although they actually have an indent of 4 plus a space for alignment. This is not a problem in most situations because there generally are fewer comment continuation lines than actual code lines which have a indent multiple of the actual indent width, but with some code with a lot of comments (e.g. short functions with verbose documentation comments) this might start to fool the algorithm and give wrong, annoying, results. So, try to detect these continuation lines and avoid taking them into account.
-
- 01 Haz, 2013 1 kayıt (commit)
-
-
Colomban Wendling yazdı
When scrolling the keybinding list to display a particular row, which is used to display a particular plugin's keybindings, consistently scroll so the row is on the top left. This makes it easier to see the row in question since it's always at the same location, and it shows more child keybindings.
-
- 31 May, 2013 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 26 May, 2013 1 kayıt (commit)
-
-
Matthew Brush yazdı
-
- 25 May, 2013 3 kayıt (commit)
-
-
Pavel Roschin yazdı
-
Colomban Wendling yazdı
This imports Scintilla commit e488315f2d30e1795f0899779bac948da41b4eef from HG, "Bug: [#1481]. Incorrect event copying on GTK+ 3.x."
-
Colomban Wendling yazdı
This imports Scintilla commit 06f36a3217229ec2c2a360e370ae1b07597ce7b6 from HG, "Fix crashes with SelectionText instances that did not have \0 terminators."
-
- 22 May, 2013 10 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
In the file properties dialog there are a few label for which the default value is never visible to the user, and then don't need to be translated. These strings are only useful to recognize and select the label in e.g. Glade UI.
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Yosef Or Boczko yazdı
for the commit "Use Glade to create the File Properties dialog" Signed-off-by:
Frank Lanitz <flanitz@bgc-jena.mpg.de>
-
Frank Lanitz yazdı
-
Colomban Wendling yazdı
Remove most obvious calls to our very own deprecated Scintilla wrapper functions sci_get_text(), sci_get_text_range() and sci_get_selected_text(). Some calls are still left, but they either really benefit from these functions or the fix would be more complex.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
- 21 May, 2013 1 kayıt (commit)
-
-
Yosef Or Boczko yazdı
Signed-off-by:
Frank Lanitz <flanitz@bgc-jena.mpg.de>
-
- 20 May, 2013 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 19 May, 2013 4 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
This is a very common paradigm used by GNOME, KDE, MacOSX, Windows, etc., and following it makes our UI more consistent with these and easier to use by their users. https://developer.gnome.org/hig-book/stable/menus-design.html.en#menu-item-type-command Closes #3613494.
-
Adam Dingle yazdı
Closes #3613558.
-