├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── support_draft.md └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.gif ├── lua └── comment-hide │ ├── commands.lua │ ├── init.lua │ └── utils.lua └── test ├── c.c ├── clojure.bb ├── clojure.clj ├── clojure.cljc ├── css.css ├── elixir.exs ├── erlang.erl ├── go.go ├── handlebars.hbs.html ├── haskell.hs ├── html.html ├── javascript.js ├── javascriptreact.jsx ├── lua.lua ├── nim.nim ├── nix.nix ├── php.php ├── python.py ├── r.r ├── ruby.rb ├── rust.rs ├── scala.scala ├── scss.scss ├── sh.sh ├── svelte.svelte ├── typescript.ts ├── typescriptreact.tsx ├── vue.vue └── yaml.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/.github/ISSUE_TEMPLATE/support_draft.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .annotations 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/demo.gif -------------------------------------------------------------------------------- /lua/comment-hide/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/lua/comment-hide/commands.lua -------------------------------------------------------------------------------- /lua/comment-hide/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/lua/comment-hide/init.lua -------------------------------------------------------------------------------- /lua/comment-hide/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/lua/comment-hide/utils.lua -------------------------------------------------------------------------------- /test/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/c.c -------------------------------------------------------------------------------- /test/clojure.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/clojure.bb -------------------------------------------------------------------------------- /test/clojure.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/clojure.clj -------------------------------------------------------------------------------- /test/clojure.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/clojure.cljc -------------------------------------------------------------------------------- /test/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/css.css -------------------------------------------------------------------------------- /test/elixir.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/elixir.exs -------------------------------------------------------------------------------- /test/erlang.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/erlang.erl -------------------------------------------------------------------------------- /test/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/go.go -------------------------------------------------------------------------------- /test/handlebars.hbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/handlebars.hbs.html -------------------------------------------------------------------------------- /test/haskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/haskell.hs -------------------------------------------------------------------------------- /test/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/html.html -------------------------------------------------------------------------------- /test/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/javascript.js -------------------------------------------------------------------------------- /test/javascriptreact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/javascriptreact.jsx -------------------------------------------------------------------------------- /test/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/lua.lua -------------------------------------------------------------------------------- /test/nim.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/nim.nim -------------------------------------------------------------------------------- /test/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/nix.nix -------------------------------------------------------------------------------- /test/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/php.php -------------------------------------------------------------------------------- /test/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/python.py -------------------------------------------------------------------------------- /test/r.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/r.r -------------------------------------------------------------------------------- /test/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/ruby.rb -------------------------------------------------------------------------------- /test/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/rust.rs -------------------------------------------------------------------------------- /test/scala.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/scala.scala -------------------------------------------------------------------------------- /test/scss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/scss.scss -------------------------------------------------------------------------------- /test/sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/sh.sh -------------------------------------------------------------------------------- /test/svelte.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/svelte.svelte -------------------------------------------------------------------------------- /test/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/typescript.ts -------------------------------------------------------------------------------- /test/typescriptreact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/typescriptreact.tsx -------------------------------------------------------------------------------- /test/vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/vue.vue -------------------------------------------------------------------------------- /test/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-rubbish/nvim.comment-hide/HEAD/test/yaml.yaml --------------------------------------------------------------------------------