Steps to reproduce:
1. Unzip Geany Portable 1.27 to a folder and run it
2. Open a CSS or XML file
3. Select View / Change Color Scheme
I got this prompt:
![image](https://cloud.githubusercontent.com/assets/4110567/15926973/69d944dc-2e71-11e6-8091-b77c3be1ddf5.png)
No matter what theme I select, the theme for CSS and XML files is stuck on Default (though for other filetypes the theme is updated properly).
---
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/1059
I would like to learn what it requires to start its development for Geany. Motivation
- convenient for typists (Dvorak/Colemak/...) and stereotypists (Plover)
- consistency for typing
Some plan
- In Preferences > Keybindings > main field *Keybinding-mode*: Emacs or Standard.
- Emacs-mode first keybindings: CTRL-A, CTRL-E, ...
I can offer some help if I can grasp some basic understanding what it requires.
---
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/1062
I changed the `brace_good` foreground color to green (`0x00ff00`) in `filetypes.common`, but the color is still stuck on white. The same applies to the `brace_bad` style.
---
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/1065
The default brace match and brace match error background color should not be set so that it mixes well with any current line highlight. Right now the background color is overriding the current line highlight, e.g.:
![image](https://cloud.githubusercontent.com/assets/4110567/15951710/3de07a7c-2eed-11e6-8949-84804605f352.png)
---
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/1064
I would like to use the default terminal keybindings.
Geanys
- CTRL-A select all
- CTRL-E comment current line
I want defaults
- CTRL-A go to the beginning of the line
- CTRL-E go to the end of the line
- CTRL-/ comment the line
One liner would be great to adjust these settings for future installations.
How can you Free Geany's CTRL-A/E?
---
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/1061
I have long paths like in my .tex documents
`/home/masi/Desktop/Mathematics/Exam/Pracitce/Question_set_one_without_answers.pdf
`
which I really would like to have only as $VARIABLE/Filename.pdf. Or anything similar which makes those paths shorter for my ultrabook.
---
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/1057
Sample Code in Bash below.
The problem is with <<EOL.
All text after the <<EOL is green and a fold point is created.
The fold point and green text only ends if I put EOL at the beginning of a line. If there is any space or tab geany does not register the EOL and continues to use green text.
function myFunction() {
echo "This is my function"
if [ -n "${LEGACY+1}" ]; then
OUTPUT="command1\n"
OUTPUT+="command2"
someinput_program <<EOL
$(echo -e $OUTPUT)
quit
EOL
else
OUTPUT="command1 with command2"
anotherinput_program $OUTPUT
fi
echo -e $OUTPUT
}
---
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/1063