If use macros in function declaration geany show it instead of really name. For example if use macros
`#define shared_ptr(T) std::shared_ptr<T>`
in func
```
void my::myclass::func (
shared_ptr (T1) t1,
shared_ptr (T2) t2)
{
}
```
it see shared_ptr[80]
I'm used version from Calculate Linux 1.25 and 1.28
```
darkprof@calculate ~ $ eix geany
[I] dev-util/geany
Доступные версии: 1.24.1{tbz2} 1.25{tbz2} ~1.26 ~1.27 (~)1.28 {gtk3 +vte}
Установленные версии: 1.28(18:26:52 09.08.2016)(vte -gtk3)
Домашняя страница: http://www.geany.org
Описание: GTK+ based fast and lightweight IDE
[I] dev-util/geany-plugins
Доступные версии: 1.23 1.24-r1{tbz2} 1.25{tbz2} ~1.26 {+autoclose +automark +commander ctags debugger +defineformat devhelp enchant git gpg gtkspell lua markdown multiterm nls +overview python scope soup webkit PYTHON_TARGETS="python2_7"}
Установленные версии: 1.25{tbz2}(23:11:56 26.06.2016)(autoclose automark commander defineformat nls overview webkit -ctags -debugger -devhelp -enchant -git -gpg -gtkspell -lua -markdown -multiterm -python -scope -soup PYTHON_TARGETS="python2_7")
Домашняя страница: http://plugins.geany.org/geany-plugins
Описание: A collection of different plugins for Geany
[I] x11-themes/geany-themes
Доступные версии: 1.22.2{tbz2} ~1.22.2-r1
Установленные версии: 1.22.2{tbz2}(12:07:36 06.08.2015)
Домашняя страница: https://github.com/codebrainz/geany-themes
Описание: A collection of colour schemes for Geany
Найдено 3 совпадение.
darkprof@calculate ~ $
```
---
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/1172
After last update, Geany 1.27
When i push "Create new file", there is no possibility to specify the file name. The file is opened immediately. To enter the file name, it is necessary to rename it.
New file with name "newfile" creates immediately. It is problem.
I have to press a lot of buttons, simply create a new file. It is very hinders the work.
---
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/469
Missing for the moment, but I'll try and work on that tomorrow, thanks for the reminder
---
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/516#issuecomment-238407472
> Ah, tempFile() is different from uctags where it returns MIO.
Oh, I see
> I've repushed the patch with a hopefully correct fix this time.
yep, looks good
---
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/commit/dad9f887213253f1743c25884ebaa5812cec8…
Ah, tempFile() is different from uctags where it returns MIO. I've repushed the patch with a hopefully correct fix this time.
---
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/commit/dad9f887213253f1743c25884ebaa5812cec8…
still incorrect, the problem is that you changed `FILE *fp = tempFile ("w", &tempName);` to `MIO *mio = tempFile ("w", &tempName);`, but `tempFile()` still returns a `FILE*`, not a `MIO*`.
The proper fix is just to undo those 2 lines in 967b572240513689fc2f6f9aefa929e7d54f6bfc
---
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/commit/dad9f887213253f1743c25884ebaa5812cec8…