diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-27 23:49:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 23:49:47 +0200 |
commit | e46f5aab895f333d23d6adf490e13177c8d3c1d8 (patch) | |
tree | e0bf5224a8db9e9cb4b60347cfd4ac7f8faacbaf /src/nvim/normal.c | |
parent | 86b7d8a9f54d572e6866d6a24476d2369a288f79 (diff) | |
parent | 448d4837be7f7bd60ac0b5a3100c0217ac48a495 (diff) | |
download | rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.tar.gz rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.tar.bz2 rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.zip |
Merge pull request #25396 from bfredl/no_attr
refactor(messages): fold msg() functions with and without attr
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 309b6e2568..adb0aa8998 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -689,7 +689,7 @@ static void normal_redraw_mode_message(NormalState *s) keep_msg = kmsg; kmsg = xstrdup(keep_msg); - msg_attr(kmsg, keep_msg_attr); + msg(kmsg, keep_msg_attr); xfree(kmsg); } setcursor(); @@ -1377,7 +1377,7 @@ static void normal_redraw(NormalState *s) // check for duplicates. Never put this message in // history. msg_hist_off = true; - msg_attr(p, keep_msg_attr); + msg(p, keep_msg_attr); msg_hist_off = false; xfree(p); } @@ -6140,9 +6140,9 @@ static void nv_esc(cmdarg_T *cap) if (restart_edit == 0 && cmdwin_type == 0 && !VIsual_active && no_reason) { if (anyBufIsChanged()) { msg(_("Type :qa! and press <Enter> to abandon all changes" - " and exit Nvim")); + " and exit Nvim"), 0); } else { - msg(_("Type :qa and press <Enter> to exit Nvim")); + msg(_("Type :qa and press <Enter> to exit Nvim"), 0); } } |