diff --git a/d2e178e0.md b/d2e178e0.md new file mode 100644 index 0000000..d6f2a39 --- /dev/null +++ b/d2e178e0.md @@ -0,0 +1,16 @@ +--- +date: 2021-03-14T14:34 +tags: + - vim +--- + +# the `:normal` command runs normal commands on multiple lines + +The `:normal` command is a useful way to run the same Normal mode command +on multiple lines. + +```vim +:%normal i# +``` + +The command above will comment out an entire Python source file.