Skip to content

Commit

Permalink
vim - Update gdb plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
aschrab committed Sep 23, 2021
1 parent ecaed6a commit 58f1c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim/bundle/gdb
Submodule gdb updated 92 files
+21 −0 .ghwf-Darwin.sh
+29 −0 .ghwf-Linux.sh
+1 −0 .ghwf-common
+41 −0 .github/workflows/test.yml
+3 −1 .gitignore
+0 −19 .travis-Darwin.sh
+0 −14 .travis-Linux.sh
+0 −32 .travis.yml
+44 −35 README.md
+1 −3 TODO
+93 −52 autoload/nvimgdb.vim
+0 −85 autoload/nvimgdb/ui.vim
+1 −0 bandit.yml
+138 −52 doc/nvimgdb.txt
+0 −202 lib/BaseProxy.py
+0 −77 lib/StreamFilter.py
+278 −0 lib/base_proxy.py
+31 −0 lib/bashdb_proxy.py
+43 −0 lib/gdb_proxy.py
+9 −8 lib/gdb_wrap.sh
+0 −71 lib/gdbproxy.py
+68 −31 lib/lldb_commands.py
+8 −10 lib/lldb_wrap.sh
+31 −0 lib/pdb_proxy.py
+0 −76 lib/pdbproxy.py
+101 −0 lib/stream_filter.py
+0 −22 lib/test_StreamFilter.py
+30 −0 lib/test_stream_filter.py
+139 −0 lua/nvimgdb.lua
+297 −0 lua/nvimgdb/app.lua
+22 −0 lua/nvimgdb/backend.lua
+127 −0 lua/nvimgdb/backend/bashdb.lua
+47 −0 lua/nvimgdb/backend/common.lua
+103 −0 lua/nvimgdb/backend/gdb.lua
+78 −0 lua/nvimgdb/backend/lldb.lua
+115 −0 lua/nvimgdb/backend/pdb.lua
+103 −0 lua/nvimgdb/breakpoint.lua
+115 −0 lua/nvimgdb/client.lua
+88 −0 lua/nvimgdb/compat.lua
+190 −0 lua/nvimgdb/config.lua
+63 −0 lua/nvimgdb/cursor.lua
+43 −0 lua/nvimgdb/efmmgr.lua
+107 −0 lua/nvimgdb/keymaps.lua
+114 −0 lua/nvimgdb/log.lua
+38 −0 lua/nvimgdb/parser_actions.lua
+181 −0 lua/nvimgdb/parser_impl.lua
+121 −0 lua/nvimgdb/proxy.lua
+279 −0 lua/nvimgdb/win.lua
+11 −3 plugin/nvimgdb.vim
+6 −0 pylintrc
+0 −148 rplugin/python3/gdb/__init__.py
+0 −155 rplugin/python3/gdb/app.py
+0 −25 rplugin/python3/gdb/backend/gdb.py
+0 −24 rplugin/python3/gdb/backend/lldb.py
+0 −18 rplugin/python3/gdb/backend/pdb.py
+0 −53 rplugin/python3/gdb/breakpoint.py
+0 −50 rplugin/python3/gdb/client.py
+0 −93 rplugin/python3/gdb/config.py
+0 −32 rplugin/python3/gdb/cursor.py
+0 −72 rplugin/python3/gdb/keymaps.py
+0 −13 rplugin/python3/gdb/logger.py
+0 −42 rplugin/python3/gdb/proxy.py
+0 −69 rplugin/python3/gdb/scm.py
+0 −13 rplugin/python3/gdb/sockdir.py
+0 −65 rplugin/python3/gdb/win.py
+1 −1 test/.gitignore
+16 −9 test/all.sh
+9 −0 test/config.py
+88 −18 test/conftest.py
+117 −50 test/engine.py
+3 −0 test/init.vim
+0 −11 test/keymap_cleanup.vim
+3 −3 test/keymap_hooks.vim
+6 −4 test/lib.py
+5 −5 test/main.py
+22 −0 test/main.sh
+24 −0 test/nvim
+22 −15 test/prerequisites.sh
+1 −1 test/run
+0 −28 test/run-visual
+149 −0 test/spy_ui.py
+18 −11 test/test_05_quit.py
+97 −32 test/test_10_generic.py
+18 −15 test/test_15_multiview.py
+37 −26 test/test_20_breakpoint.py
+79 −43 test/test_30_pdb.py
+67 −46 test/test_40_keymap.py
+63 −0 test/test_45_layout.py
+33 −8 test/test_50_command.py
+80 −0 test/test_60_bashdb.py
+146 −0 test/test_70_quickfix.py
+24 −0 test/test_90_misc.py

0 comments on commit 58f1c60

Please sign in to comment.