Reboot of #1908. I've cherry-picked @StephenWassell's 2 commits and added a fix commit:
* `editor_prefs.skip_project_ask_close` -> `project_prefs.project_ask_close`
* Group it with UI rather than editor.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2171
-- Commit Summary --
* #1907 Add preferences flag to skip the project_ask_close dialog
* #1907 Add preferences flag to skip the project_ask_close dialog - document
* editor_prefs.skip_project_ask_close -> project_prefs.project_ask_close
-- File Changes --
M doc/geany.txt (2)
M src/project.c (9)
M src/project.h (1)
M src/ui_utils.c (2)
-- Patch Links --
https://github.com/geany/geany/pull/2171.patchhttps://github.com/geany/geany/pull/2171.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/2171
When using New Project/Open project dialogs or the recent project files submenu, there's no need to confirm closing the project (so long as the dialogs can be cancelled before closing the session). It's unlikely those actions are done by accident. I've kept confirmation for opening a project file from the command line, in case it was a glob mistake. OSX confirmation is kept because I'm not sure what the OSX code is for and also can't test.
* Make Open Project dialog cancellable without closing existing session
* Opening recent projects: Don't ask whether to close current project
* Make New Project dialog cancellable without closing existing session (this one needed some refactoring)
These 3 are in separate commits, probably best to view commits separately.
This also probably makes #2171 unnecessary.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2178
-- Commit Summary --
* Make Open Project dialog cancellable without closing existing session
* Make New Project dialog cancellable without closing existing session
* Opening recent projects: Don't ask whether to close current project
-- File Changes --
M src/project.c (91)
M src/ui_utils.c (3)
-- Patch Links --
https://github.com/geany/geany/pull/2178.patchhttps://github.com/geany/geany/pull/2178.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/2178
Hi. Wich status of nim-language support?
I'm found this [PR](https://github.com/geany/geany/pull/193) and I'm tried Geany 1.27 (available in repos of Linux Mint 18.3), but it haven't syntax highlighting and autocompletion :(
![1](https://user-images.githubusercontent.com/15020827/36339299-318ef4ca-13d3-11e8-8f86-abe278fd508c.png)
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/1772
I am coding an important personal project and I dont want anything from this particular folder or its content to be seen. Currently geany remembers our files in **recent files** and also while freshly opening geany. I dont want this for the files in a particular folder but wants to retain this function in others. Is there any way I can do this in geany?
--
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/2194
Line operations currently use `strcmp()`, so sorting non-ASCII text gives nonsense (because it sorts by bites of UTF-8 sequences). It would be nice to have normal sorting that use `g_utf8_collate()` (or `g_utf8_collate_key()` for better performance) either by default (replacing `strcmp()`) or as separate operations.
--
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/issues/819
When I have some css editing in Geany, and I have some lines that start out:
box-sizing:...
box-shadow: ...
src: ...
those identifiers are colored differently than the other identifiers like margin:, padding:, width: etc. It's like it thinks they are somehow a different type of identifier, or it hasn't been updated to know about the latest CSS features for years.
--
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/1342