.gitignore 975 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Tools
  2. .ropeproject/
  3. compile_commands.json
  4. # Visual Studio
  5. /.vs/
  6. # Build/deps dir
  7. /build/
  8. /cmake-build-debug/
  9. /dist/
  10. /.deps/
  11. /tmp/
  12. *.mo
  13. .*.sw?
  14. *~
  15. *.pyc
  16. *.o
  17. *.so
  18. tags
  19. /src/nvim/po/vim.pot
  20. /src/nvim/po/*.ck
  21. # Generated by tests with $NVIM_LOG_FILE set.
  22. /.nvimlog
  23. # Generated by scripts/vim-patch.sh
  24. /.vim-src/
  25. # Generated by old (Vim) tests.
  26. /src/nvim/testdir/del
  27. /src/nvim/testdir/test*.out
  28. /src/nvim/testdir/test*.res
  29. /src/nvim/testdir/test.log
  30. /src/nvim/testdir/messages
  31. /src/nvim/testdir/viminfo
  32. /src/nvim/testdir/test.ok
  33. /src/nvim/testdir/*.failed
  34. /src/nvim/testdir/X*
  35. /src/nvim/testdir/valgrind.*
  36. /src/nvim/testdir/.gdbinit
  37. /runtime/indent/testdir/*.out
  38. # Generated by src/nvim/testdir/runnvim.sh.
  39. /src/nvim/testdir/*.tlog
  40. # Generated by unit tests.
  41. /test/includes/post/
  42. # Generated by luacheck during `make lualint'
  43. .luacheckcache
  44. # local make targets
  45. local.mk
  46. # runtime/doc
  47. /runtime/doc/*.html
  48. /runtime/doc/tags.ref
  49. /runtime/doc/errors.log
  50. # CLion
  51. /.idea/