I have a new PC which has a 13 inch 1920x1080 display. It comes with a W10 display configuration with a zoom of 150% (recommended) for the texts and applications.
It works well for other applications but geany is now blurred. The icon as well. cf image.
Could you do something ??
![image](https://cloud.githubusercontent.com/assets/7809481/10431434/4fc2b0bc-7105-11e5-9f7c-81defb660e54.png)
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/692
![wordcompletiontruncated](https://cloud.githubusercontent.com/assets/7548378/10593532/7e9e5334-76bc-11e5-949e-f04a742b1cd7.png)
When I push the text size up to the limit using <b>control+mouse wheel</b> and then do a word completion, the choice seem to be truncated.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/702
![snippetcompletion](https://cloud.githubusercontent.com/assets/7548378/10855448/826d9aee-7f39-11e5-9b70-bf23d18eec33.png)
Please consider adding snippets to word completions so that when I want <b>lambda</b> acted on as a snippet, I would be able to type <b>lam</b>, choose from the possible completions, and then if I chose <b>lambda</b> from the list with the <b>tab</b> character, the snippet would be completed to get <b>𝝺</b>
Thanks for your consideration of this matter.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/717
I have no autocomplete functionality at all. This is repeated on two different machines with identical versions: geany 1.25, GTK 2.24.28, Glib 2.44.1, Xfce 4.12, Linux 4.2.3-1-ARCH
Tried with java, python, bash, and html.
No plugins are installed and autocomplete is turned on in preferences:
![geany_prefs](https://cloud.githubusercontent.com/assets/5779507/10682827/619dfea6-7900-11e5-8875-5c5dd262212e.jpg)
Geany starts without any errors:
$ geany -v
Geany-INFO: Geany 1.25, en_US.UTF-8
Geany-INFO: GTK 2.24.28, GLib 2.46.1
Geany-INFO: System data dir: /usr/share/geany
Geany-INFO: User config dir: /home/magyar/.config/geany
Geany-INFO: System plugin path: /usr/lib/geany
Geany-INFO: Added filetype Cython (61).
Geany-INFO: Added filetype Clojure (62).
Geany-INFO: Added filetype CUDA (63).
Geany-INFO: Added filetype JSON (64).
Geany-INFO: Added filetype Scala (65).
Geany-INFO: Added filetype Genie (66).
Geany-INFO: Added filetype Graphviz (67).
Geany-INFO: unknown : None (UTF-8)
Syntax highlight works just fine:
![geany_highlighting](https://cloud.githubusercontent.com/assets/5779507/10683173/a83654a4-7904-11e5-84e5-01c15856906b.jpg)
But no autocomplete.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/710
No matter what I do, Geany won't highlight any .INO syntax! I tried copying (geany root)/data/filetypes.cpp to filetypes.ino (.INO syntax is about the same as .CPP syntax). No luck. I need .INO syntax highlighting! Can someone help me?
FILETYPES.INO listing:
```cfg
# For complete documentation of this file, please see Geany's main documentation
[styling=C]
[keywords]
# all items must be in one line
primary=alignas alignof and and_eq asm auto bitand bitor bool break case catch char char16_t char32_t class compl const const_cast constexpr continue decltype default delete do double dynamic_cast else enum explicit export extern false final float for friend goto if inline int long mutable namespace new noexcept not not_eq nullptr operator or or_eq override private protected public register reinterpret_cast return short signed sizeof static static_assert static_cast struct switch template this thread_local throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
secondary=
# these are the Doxygen keywords
docComment=a addindex addtogroup anchor arg attention author authors b brief bug c callergraph callgraph category cite class code cond copybrief copydetails copydoc copyright date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endinternal endlatexonly endlink endmanonly endmsc endrtfonly endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc mscfile n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref related relatedalso relates relatesalso remark remarks result return returns retval rtfonly sa section see short showinitializer since skip skipline snippet struct subpage subsection subsubsection tab
leofcontents test throw throws todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem
[lexer_properties]
styling.within.preprocessor=1
lexer.cpp.track.preprocessor=0
preprocessor.symbol.$(file.patterns.cpp)=#
preprocessor.start.$(file.patterns.cpp)=if ifdef ifndef
preprocessor.middle.$(file.patterns.cpp)=else elif
preprocessor.end.$(file.patterns.cpp)=endif
[settings]
lexer_filetype=C
# default extension used when saving files
extension=cpp
# MIME type
mime_type=text/x-c++src
# the following characters are these which a "word" can contains, see documentation
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
# single comments, like # in this file
comment_single=//
# multiline comments
comment_open=/*
comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
#command_example();
# setting to false would generate this
# command_example();
# This setting works only for single line comments
comment_use_indent=true
# context action command (please see Geany's main documentation for details)
context_action_cmd=
[indentation]
#width=4
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[build-menu]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
FT_00_LB=_Compile
FT_00_CM=g++ -Wall -c "%f"
FT_00_WD=
FT_01_LB=_Build
FT_01_CM=g++ -Wall -o "%e" "%f"
FT_01_WD=
FT_02_LB=_Lint
FT_02_CM=cppcheck --language=c++ --enable=warning,style --template=gcc "%f"
FT_02_WD=
EX_00_LB=_Execute
EX_00_CM="./%e"
EX_00_WD=
```
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/715
When new file is opened (previous file which hasn't been opened before), it doesn't open maximized, window is not fully across the screen. This is clean installation of 2.24 version on Windows 7. You should also have previous files already opened in geany showing in tabs to replicate this problem
![geany](https://cloud.githubusercontent.com/assets/1643081/10124022/0eb000d2-654a-11e5-9ede-2cfbc83ed3ee.png)
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/671
Line dialogs.c:1347 says "/* For a cancel button, use cancel response so user can press escape to cancel */" however in line 1357 only GTK_RESPONSE_CANCEL is linked to response_2, but esc KEY triggers a GTK_RESPONSE_DELETE_EVEN; hence it should be included also in 1357.
I found it because of a strange behaviour when cancelling a keybinding override in preferences dialog. You can reproduce it like so: go to prefs>keybindings, set a keybinding which is already used for another command, then Geany will show up a dialog saying that the combination is already used. Once there, if you press <kbd>Esc</kbd> key, you'll see that it does the "Allow" action, instead of -what the user would expect- the "Cancel" action.
I'm testing it and dialogs work fine as well as the issue exposed above is fixed.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/714
-- Commit Summary --
* Set close dialog and esc key events as cancel in show_prompt()
-- File Changes --
M src/dialogs.c (2)
-- Patch Links --
https://github.com/geany/geany/pull/714.patchhttps://github.com/geany/geany/pull/714.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/714
This one is hard to reproduce (sorry), and I have no idea what causes this or what is happening.
Steps to reproduce *sometimes*:
0. Install and enable GeanyLaTeX (in case it is relevant: I have only the "auto-completion" activated)
1. Create and open: A latex file and a Makefile, in the same directory (I use the makefile to compile the latex document)
2. Edit the latex file over a long time, intermittently calling "make" via the shortcut "Shift+F9" (as found in the menu)
Actual behaviour: Sometimes the "Make" menu item becomes and stays disabled. This also disables the keyboard shortcut, so Shift+F9 does not do anything anymore. Switching between geany-tabs or re-opening the file does not help. The only way to work around this is to restart Geany.
Expected behaviour: Shift+F9 and the "Make" menu item stay enabled for the whole time.
Versions: Geany 1.25 "Veed" // "(compiled on 2015-07-12 or later)"
Sorry that I can't provide a more reliable way of reproducing the bug. I have already played with different things, and have, so far, only come to the conclusion that disabling the GeanyLaTeX pluging avoids this bug. However, this is not a guarantee, since I "only" tried that for a week. Otherwise I run into that bug roughly once every two weeks, so this experiment isn't conclusive.
I continue using Geany, so if anyone can give me a better "test", or instructions on what to look for via gdb while this is happening, I'd gladly do that.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/282