Ben Chuanlong Du's Blog

It is never too late to learn.

FireNVim Brings NeoVim into Your Browser

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Installation

  1. Install icon.

    curl -sSL https://raw.githubusercontent.com/legendu-net/icon/main/install_icon.sh | sudo bash -
    
  2. Install and configure NeoVim and SpaceVim using icon.

    icon nvim -ic
    icon svim -ic
    
  3. Install …

SpaceVim - A Modern Vim/NeoVim Configuration

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Installation

curl -sLf https://spacevim.org/install.sh | bash
# enable Python3 support
wajig install python3 python3-pip
pip3 install -U pynvim

Uninstallation

curl -sLf https://spacevim.org/install.sh | bash -s -- --uninstall …

Vim Keybindings Using IdeaVim in IntelliJ IDEA

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. Put the line set surround into your ~/.ideavimrc to make IdeaVim support surround.

Issues

  1. yssb, yss), etc. do not work well currently.

References

  • https://github.com/JetBrains/ideavim

  • https://youtrack.jetbrains …

Navigate Chrome Browser Like a Pro Using Vimium

** Things on this page are fragmentary and immature notes and thoughts of the author. Please read with your own judgement! **

Customize Key Mappings

  1. Open Vimium Options.

  2. Paste your customized key mappings into "Custom key mappings". Below is an example of my customized key mapping configuration.

    map d removeTab
    map u …

Tips on Vim

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Vim Distributions

Reload File

:e!

https://unix.stackexchange.com/questions/149209/refresh-changed-content-of-file-opened-in-vim

/\cPatterToSearch

:set ignorecase

:set smartcase /copyright " Case insensitive /Copyright " Case sensitive /copyright\C " Case …