4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 5
Newer►
96 results tagged vim x
  • thumbnail
    How to paste yanked text to vim command-line? - Super User

    You can do <C-r>" to paste from the default register or <C-r>a to paste from register a.

    24 octobre 2019 à 15:58:01 UTC+2 - permalink - archive.org - https://superuser.com/questions/470727/how-to-paste-yanked-text-to-vim-command-line
    command paste vim
  • thumbnail
    keyboard shortcuts - How to put current line at top/center/bottom of screen in vim? - Unix & Linux Stack Exchange

    zt
    zb
    zz

    zs
    ze

    6 octobre 2019 à 11:41:43 UTC+2 * - permalink - archive.org - https://unix.stackexchange.com/questions/110251/how-to-put-current-line-at-top-center-bottom-of-screen-in-vim
    vim
  • thumbnail
    scroll - How to move screen without moving cursor in Vim? - Stack Overflow

    Additionally:

    Ctrl-y Moves screen up one line
    Ctrl-e Moves screen down one line
    Ctrl-u Moves cursor & screen up ½ page
    Ctrl-d Moves cursor & screen down ½ page
    Ctrl-b Moves screen up one page, cursor to last line
    Ctrl-f Moves screen down one page, cursor to first line

    Ctrl-y and Ctrl-e only change the cursor position if it would be moved off screen.

    26 août 2019 à 13:49:05 UTC+2 - permalink - archive.org - https://stackoverflow.com/questions/3458689/how-to-move-screen-without-moving-cursor-in-vim
    move vim
  • thumbnail
    GitHub - dhruvasagar/vim-zoom: Toggle zoom in / out individual windows (splits)
    20 août 2019 à 17:57:51 UTC+2 - permalink - archive.org - https://github.com/dhruvasagar/vim-zoom
    plugin vim zoom
  • thumbnail
    Is better way to zoom windows in Vim than ZoomWin? - Stack Overflow

    I try to use vim without any plugins as I don't want to rely on them when I work on another system. Coming upon this same issue now, I can propose some 'better ways' (alternative ways) as requested by the OP:

    c-w-| to have window take over (if using vsplits). c-w-= to restore. c-w-_ for horizontal splits
    close the other window(s), thereby making current one fullscreen. Split and re-open from buffer to restore
    17 août 2019 à 17:43:34 UTC+2 - permalink - archive.org - https://stackoverflow.com/questions/13194428/is-better-way-to-zoom-windows-in-vim-than-zoomwin
    vim zoom
  • thumbnail
    All the right moves | Vim Tips Wiki | FANDOM powered by Wikia
    16 août 2019 à 17:04:24 UTC+2 - permalink - archive.org - https://vim.fandom.com/wiki/All_the_right_moves
    move vim
  • thumbnail
    GitHub - scrooloose/nerdtree: A tree explorer plugin for vim.

    Comment j'ai fait pour me passer de nerdtree?

    29 juillet 2019 à 15:50:41 UTC+2 - permalink - archive.org - https://github.com/scrooloose/nerdtree
    vim
  • thumbnail
    Vim: you don't need NERDtree or (maybe) netrw | George Ornbo
    8 mai 2019 à 19:09:39 UTC+2 - permalink - archive.org - https://shapeshed.com/vim-netrw/
    browser vim
  • Note: vim

    current line in top of screen : z<return>
    go to next blank line (paragraph) : }

    28 mars 2019 à 10:25:20 UTC+1 - permalink - archive.org - https://links.infomee.fr/?jNJo8g
    vim
  • thumbnail
    Vim After 15 Years | Ian Langworth’s Things of Variable Interest

    https://github.com/junegunn/fzf
    https://vimawesome.com/plugin/ack-vim
    https://vimawesome.com/plugin/unimpaired-vim

    20 octobre 2017 à 10:09:59 UTC+2 * - permalink - archive.org - https://statico.github.io/vim3.html
    vim
  • thumbnail
    sickill/vim-monokai: Monokai color scheme for Vim converted from Textmate theme
    7 juin 2017 à 17:35:56 UTC+2 - permalink - archive.org - https://github.com/sickill/vim-monokai
    color vim
  • Dracula — A dark theme for Vim and 40+ apps
    7 juin 2017 à 17:35:22 UTC+2 - permalink - archive.org - https://draculatheme.com/vim/
    color vim
  • Fugitive.vim - exploring the history of a git repository

    :Glog

    :clist
    :cprev
    :cnext
    :cfirst
    :clast

    27 avril 2017 à 15:10:31 UTC+2 - permalink - archive.org - http://vimcasts.org/episodes/fugitive-vim-exploring-the-history-of-a-git-repository/
    fugitive vim
  • thumbnail
    linux - How to expand/collapse a diff sections in Vimdiff? - Stack Overflow

    zo
    zc

    9 février 2017 à 10:30:53 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/5288875/how-to-expand-collapse-a-diff-sections-in-vimdiff
    vim vimdiff
  • thumbnail
    File format | Vim Tips Wiki | Fandom powered by Wikia
    29 décembre 2016 à 12:10:32 UTC+1 - permalink - archive.org - http://vim.wikia.com/wiki/File_format
    convert CR CRLF file format git LF vim
  • Fugitive.vim - resolving merge conflicts with vimdiff

    :Gdiff
    :dp

    9 décembre 2016 à 14:47:25 UTC+1 - permalink - archive.org - http://vimcasts.org/episodes/fugitive-vim-resolving-merge-conflicts-with-vimdiff/
    fugitive merge vim
  • Note: inception

    I've edited my .vimrc to add fugitive plugin and commited it by using fugitive

    9 décembre 2016 à 14:06:22 UTC+1 - permalink - archive.org - https://links.infomee.fr/?4Ww4qQ
    git vim
  • The Fugitive Series - a retrospective

    <3

    9 décembre 2016 à 11:53:51 UTC+1 - permalink - archive.org - http://vimcasts.org/blog/2011/05/the-fugitive-series/
    fugitive vim
  • How to resolve git merge conflicts with Vim - Flaviu Simihaian's Blog - Entrepreneur and Developer

    \o/

    9 décembre 2016 à 09:54:02 UTC+1 - permalink - archive.org - http://flaviusim.com/blog/how-to-do-a-git-merge-with-vim/
    git merge vim
  • thumbnail
    Edit a file in-place in vim - Stack Overflow

    Comment perdre 30 min

    :set backupcopy=yes

    When you want to modify a file, you have two options, each with its benefits and drawbacks.

    You can overwrite the file in place. This does not use any extra space, and conserves the hard links, permissions and any other attribute beyond the content of the existing file. The major drawback of doing this is that if anything happens while the file is being written (the application crashes, or the power goes out), you end up with a partially written file.
    You can write the new version of the file to a new file with a different name, then move it into place. This uses more space and breaks hard links, and if you have write permissions on a file but not on the directory it contains, you can't do it at all. On the flip side, the old version of the file is atomically replaced by the new version, so at every point in time the file name points to a valid, complete version of the file.

    http://vimdoc.sourceforge.net/htmldoc/options.html#%27backup%27

    23 novembre 2016 à 15:24:04 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/11043534/edit-a-file-in-place-in-vim
    docker file mount vim
Links per page: 20 50 100
◄Older
page 2 / 5
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation