Giter Club home page Giter Club logo

vim-scratch's Introduction

vim-scratch

A quick way to create scratch files for any filetype as you work.

Installation & Configuration

Using vim plug add the following to your .vimrc or init.nvim

Plug 'aareman/vim-scratch'

Then run

:PlugInstall<cr>

To configure the plugin please specify a vim-scratch directory in your config file

let g:scratches_dir = path/to/scratches

You can set it to whatever you want. The default it ~/.vim/vim-scratches. You must have the directory created or vim will throw an errorโš 

How to use

Normal Mode

In normal mode trigger the mapping and vim will prompt you for a file extension (ie. js) enter it and press <cr> vim will open a scratch file called scratch.<EXT> in the directory. You can do it for any file extension, the key idea is that all your syntax plugins, REPLs, etc. will be accessible from that new file.

If you don't enter a filetype (ie. you press <cr> without entering an extension, the plugin will open a file of the current file's extension)

You can only have one file per extension, but they will be shared between projects. In the future there may be a feature to have project local scratches as well as more than one per filetype... ๐Ÿš€

Visual Mode

Same as normal mode, but it will automatically paste a copy of your selection into the new file appending it to the buffer.

This plugin provides key mappings for

Keymappings

" e = open in current buffer
" s = open in horizontal split
" v = open in vertical split
" t = open in tab (will use tabdrop so if you have 
"     it open already it will jump to that tab instead)

"Normal Mode Mappings
<Plug>(open-scratch-e)
<Plug>(open-scratch-s)
<Plug>(open-scratch-v)
<Plug>(open-scratch-t)

" Visual Mode Mappings
<Plug>(open-scratch-visual-e)
<Plug>(open-scratch-visual-s)
<Plug>(open-scratch-visual-v)
<Plug>(open-scratch-visual-t)

Tip - make sure to use nmap and vmap instead of nnoremap and vnoremap.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.