[Github-comments] Re: [geany/geany] Add `.cjs` extension for JavaScript (PR #3866)

2024-05-18 Thread elextr via Github-comments
Merged #3866 into master. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/3866#event-12857263637 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany-plugins] geanyctags, projectorganizer, vimode: Some README and URL updates (PR #1348)

2024-05-18 Thread elextr via Github-comments
@elextr approved this pull request. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/1348#pullrequestreview-2064966967 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany-plugins] Add LSP plugin (PR #1331)

2024-05-18 Thread Jiří Techet via Github-comments
@techee pushed 1 commit. df2a325fd0d0aeaff1bde339a1bf36c1ac6d4053 Prefer autocomplete when both autocomplete and calltips are available -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1331/files/731a0f3060837a26afc183e57da1897dff366795..df2a325fd0d0aeaff1bde339a1bf36c1ac6d405

[Github-comments] Re: [geany/geany-plugins] Vimode: Fix cursor hang with folded lines (PR #1326)

2024-05-18 Thread Jiří Techet via Github-comments
@techee commented on this pull request. > return; - /* see cmd_goto_up() for explanation */ - one_above = p->line + num - 1; - one_above = one_above < last_line ? one_above : last_line - 1; - pos = SSM(p->sci, SCI_GETLINEENDPOSITION, one_above, 0); -

[Github-comments] Re: [geany/geany-plugins] vimode: Handle folded lines correctly (PR #1338)

2024-05-18 Thread Jiří Techet via Github-comments
@techee pushed 1 commit. 7ae19de41e7d45c1c97a96b06ade67d80edf26a1 Don't update cursor position when going down on the last line -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1338/files/fa7025ba9d58fb4680fb47e13bd5c05c6f1f1059..7ae19de41e7d45c1c97a96b06ade67d80edf26a1 You ar

[Github-comments] Re: [geany/geany-plugins] Vimode: Fix cursor hang with folded lines (PR #1326)

2024-05-18 Thread Jiří Techet via Github-comments
@techee commented on this pull request. > /* Calling SCI_LINEUP/SCI_LINEDOWN in a loop for num lines leads to > visible * slow scrolling. On the other hand, SCI_LINEUP preserves the value of * SCI_CHOOSECARETX which we cannot read directly from Scintilla and which

[Github-comments] Re: [geany/geany-plugins] geanyctags, projectorganizer, vimode: Some README and URL updates (PR #1348)

2024-05-18 Thread Jiří Techet via Github-comments
@techee commented on this pull request. > @@ -109,9 +111,10 @@ Get the code from:: Ideas, questions, patches and bug reports = -Please direct all questions, bug reports and patches to the plugin author using the -email address listed below or to the G

[Github-comments] Re: [geany/geany-plugins] geanyctags, projectorganizer, vimode: Some README and URL updates (PR #1348)

2024-05-18 Thread Jiří Techet via Github-comments
@techee commented on this pull request. > @@ -11,7 +11,9 @@ GeanyCtags adds a simple support for generating and > querying ctags files for a G project. It requires that the ctags command is installed in a system path. On unix systems, distributions usually provide the ctags package; on Window

[Github-comments] Re: [geany/geany-plugins] geanyctags, projectorganizer, vimode: Some README and URL updates (PR #1348)

2024-05-18 Thread Jiří Techet via Github-comments
@techee pushed 1 commit. de9a25bb9e7aff4c7f89677120df1f9d80e419cd geanyctags: Add information about universal-ctags -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1348/files/d479bae66f24240964aa22bc6c70c4c79be9f5b3..de9a25bb9e7aff4c7f89677120df1f9d80e419cd You are receiving

[Github-comments] Re: [geany/geany-plugins] Vimode: fix cursor position after using undo (PR #1328)

2024-05-18 Thread Jiří Techet via Github-comments
@techee requested changes on this pull request. > @@ -219,3 +220,12 @@ void goto_nonempty(ScintillaObject *sci, gint line, > gboolean scroll) pos = NEXT(sci, pos); SET_POS(sci, pos, scroll); } + + +gboolean is_start_of_line(ScintillaObject *sci, gint pos) This function