Browse Source

nixpkgs/neovim: always allow closing >

Thomas Dy 3 months ago
parent
commit
43f1acf5c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .config/nixpkgs/neovim/plugins.lua

+ 1 - 1
.config/nixpkgs/neovim/plugins.lua

@@ -225,7 +225,7 @@ require('mini.pairs').setup({
     -- autopair <> if preceded by a character, otherwise it might be a regular
     -- comparison operation
     ['<'] = { action = 'open', pair = '<>', neigh_pattern = '%w.' },
-    ['>'] = { action = 'close', pair = '<>', neigh_pattern = '%w.' },
+    ['>'] = { action = 'close', pair = '<>' },
   },
 })