Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Sun, 24 Nov 2024 12:19:31 UTC Commit: 8d924fd1b75f983698ca5cdb90f1698adc9b7999 https://github.com/geany/geany-plugins/commit/8d924fd1b75f983698ca5cdb90f169...
Log Message: ----------- Merge pull request #1372 from Shooter23/patch-1
Surround word with "\<" and "\>" for search_current().
Modified Paths: -------------- vimode/src/cmds/special.c
Modified: vimode/src/cmds/special.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -94,7 +94,7 @@ static void search_current(CmdContext *c, CmdParams *p, gboolean next) else { const gchar *prefix = next ? "/" : "?"; - c->search_text = g_strconcat(prefix, word, NULL); + c->search_text = g_strconcat(prefix, "\<", word, "\>", NULL); } g_free(word);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org