In old versions, One could open a file over an ssh connection with geany to do editing.
Im not using a version of linux that has GTK anymore, so compiling older versions isnt going so well.
And no, Im not planning on installing old as hell gtk to see if geany 0.21 will allow for editing files over the network. It used to work, and it works no more. The file editor pluma has no problem with this functionality, but pluma is a sucky editor/ compiler. The mechanism I use to connect to files, is thought the window manager caja, then to select geany when opening the file. Geany does in cfact open, but no file is present. Please advise, I will provide any log if it helps to fix this.
here is geany -v for starters:
```
$ geany -v
(process:20174): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Geany-INFO: Geany 1.26 (git >= c089861), C
Geany-INFO: GTK 2.24.25, GLib 2.42.1
Geany-INFO: System data dir: /usr/local/share/geany
Geany-INFO: User config dir: /home/e/.config/geany
Geany-INFO: System plugin path: /usr/local/lib/geany
Geany-INFO: Added filetype Graphviz (61).
Geany-INFO: Added filetype CUDA (62).
Geany-INFO: Added filetype JSON (63).
Geany-INFO: Added filetype Cython (64).
Geany-INFO: Added filetype Clojure (65).
Geany-INFO: Added filetype Scala (66).
Geany-INFO: Added filetype Genie (67).
Geany-INFO: /home/e/Desktop/f.html : HTML (UTF-8)
Geany-INFO: /home/e/Downloads/jcamp-1.0/uvvis_spectra/toluene.jdx : None (UTF-8)
Geany-INFO: /home/e/Downloads/jcamp-1.0/jcamp.py : Python (UTF-8)
Geany-INFO: Loaded /usr/local/share/geany/python.tags (Python), 5964 tag(s).
Geany-INFO: /home/e/Downloads/jcamp-1.0/setup.py : Python (UTF-8)
Geany-INFO: /home/e/Desktop/shit.py : Python (UTF-8)
Geany-INFO: /home/e/public_html/index.html : HTML (UTF-8)
Geany-INFO: /home/e/Desktop/HoursJ2015-F2016 : None (UTF-8)
Geany-INFO: /home/e/Downloads/phpuri-master/README.md : Markdown (UTF-8)
Geany-INFO: Bad color 'string_3'
Geany-INFO: Bad color 'string_3'
Geany-INFO: Bad color 'string_4'
Geany-INFO: Bad color 'string_4'
Geany-INFO: /home/e/Downloads/phpuri-master/composer.json : JSON (UTF-8)
Geany-INFO: /home/e/Downloads/phpuri-master/phpuri.php : PHP (UTF-8)
Geany-INFO: Loaded /usr/local/share/geany/php.tags (PHP), 4396 tag(s).
```
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/921
@techee `NULL` check was removed in 292383c197b72c56f44b68b14845093adfed7133, was that really expected?
Other solution would be early return in `autocomplete_scope()` when `doc->tm_file` is `NULL`, but that would mean that there wouldn't be scope completion in unsaved files.
We need a fix ASAP, as it happens whenever typing `.` in an unsaved file, or a file with no tags parser. E.g. you can reproduce by opening a new geany `geany -vi` and typing `a.`, *boom*.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/943
-- Commit Summary --
* Avoid NULL dereference when typing a dot in a file without tags
-- File Changes --
M tagmanager/src/tm_workspace.c (2)
-- Patch Links --
https://github.com/geany/geany/pull/943.patchhttps://github.com/geany/geany/pull/943.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/943
Closes #940.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/941
-- Commit Summary --
* ObjectiveC: free memory blocks allocated at initialize method
* suppress the compiler warnings by adding static
* Do not generate tags for disabled kinds
* objc: fix property Protocol type error
* objc: fix property parser won't exit bug
-- File Changes --
M tagmanager/ctags/objc.c (10)
M tests/ctags/objectivec_property.mm.tags (1)
-- Patch Links --
https://github.com/geany/geany/pull/941.patchhttps://github.com/geany/geany/pull/941.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/941
Hi folks,
The find in file dialog generates the following error:
c:\program files\geany\bin\grep: unrecognized option `--include=*.c'
The fix seems to be to replace the grep.exe file with the GNU version of grep.
This was OK in 1.24 as the user had to supply his own grep command and need to make sure it was OK.
Terry
Fresh install of Geany 1.26 on Microsoft Windows [Version 6.1.7601]
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/789
@eht16 IIRC it was very straight-forward to build Grep from source on MSYS2. I guess it will have some normal deps (libgcc, etc), but probably nothing that won't already be there from our other deps.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/560#issuecomment-193065367