vim-jumpsuite VS vim-rapidrepl

Compare vim-jumpsuite vs vim-rapidrepl and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vim-jumpsuite vim-rapidrepl
8 1
5 4
- -
0.0 1.8
over 1 year ago about 2 years ago
Python Vim Script
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vim-jumpsuite

Posts with mentions or reviews of vim-jumpsuite. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-30.

vim-rapidrepl

Posts with mentions or reviews of vim-rapidrepl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-24.
  • Vim setup as a Python IDE with REPL similar to Spyder/VSCode
    6 projects | /r/Python | 24 Feb 2022
    Been using this setup for a year so I thought I'd share it. Using plugins it features: * Integrated IPython REPL. Starts automatically when Vim is launched (can also use jupyter console instead). * Text editing is mostly done using modern editing shortcuts (Ctrl-PgUp/Down for cycling between buffers, selected text is replaced) with some combination of VIM normal mode commands (save using :w and quit using :qa). See vim tutorial for basic introduction. ESC enters normal mode. Ins or i enters insert (edit) mode. * Code cell navigation similar to Matlab/Spyder/Jupyter notebook (Ctrl-up/down) * Code execution in REPL (using Vim-Slime plugin): Whole file (F5), Cell execution (C-Enter or space-Enter), Single statment/selection execution (Space-1, Space-3), Current symbol under cursor execution (Space-2). All in normal mode. * LSP integration (using Vim-LSP plugin and PYLSP): show/goto symbol (Space-p), goto definition (gd in normal mode), show references (gr) * Using popup menus for usefull commands (using LeaderF plugin): show buffers (C-p), open file (C-l), open last edited files (Space-l), show LeaderF commands (C-x). Use Ctrl-j/k to cycle up and down in the list. * Copy-paste to/from system clipboard works in Editor, REPL and also normal mode. * Debug using (Space-d) which inserts debug statements. Then run the code as usual (F5 or run cell) to drop into ipdb. Alternatively as always you can use IPython %debug when an error occurs. For more advanced usage there is the vim Spector plugin. * Toggle comments using C-/ (normal mode) * Switching between the REPL and editor (Alt-1 or C-W,C-W). Also easily 'inspect' a variable even in ipdb by sending the variable to ipython using the keyboard * Using IPython already have many builtin features, sometimes missing from IDEs: symbol completion in the REPL, REPL search history, kernel interrupting (Ctrl-c), text is auto scrolled at the bottom when output is appended (long for loops) * You can access the REPL output and copy it by using the keyboard (Escape and then the usual editing commands)

What are some alternatives?

When comparing vim-jumpsuite and vim-rapidrepl you can also consider the following projects:

pylsp-rope - Extended refactoring capabilities for python-lsp-server using Rope

Python-mode - Vim python-mode. PyLint, Rope, Pydoc, breakpoints from box.

vim-test - Run your tests at the speed of thought

Rope - a python refactoring library

pudb - Full-screen console debugger for Python

vim-textobj-python - Text objects for Python.

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

vim-textobj-indent - Vim plugin: Text objects for indented blocks of lines

jedi - Awesome autocompletion, static analysis and refactoring library for python