From 2fe5eb7310a029267c0cbba8c14607912d377081 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 8 Feb 2015 11:37:48 -0600 Subject: [PATCH] Add a til on previous buffer in vim. --- vim/previous-buffer.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vim/previous-buffer.md diff --git a/vim/previous-buffer.md b/vim/previous-buffer.md new file mode 100644 index 0000000..bdd2b19 --- /dev/null +++ b/vim/previous-buffer.md @@ -0,0 +1,10 @@ +# Previous Buffer + +I often find myself needing to jump back and forth between two buffers. For +instance, if I am iterating on a test and the implementation, there is a lot +of switching from one to the other and then back again. + +This quickest way to do this is to use the command for going to the previous +buffer. The default binding for that is `ctrl-^`. + +With that binding, it is fast and easy to toggle between two buffers.