dinsdag 13 juni 2017

Selecting text from SVG files

  1. :vnew is more effcient than :vsplit followed by :enew.
  2. yit is more efficient than vit followed by y.
  3. Okay I'm being facetious. Sorry. To actually answer your question, macros (:help complex-repeats) can playback commands that move the cursor to other windows, so you can use them for this sort of task. You might need to tweak this to work with the contents of your file, but the basic steps are:
    1. /tspan<cr>: Search for the first tag.
    2. f>l: Jump into the element contents.
    3. qq: Start recording into the q register.
    4. yit : Yank the text.
    5. ctrl-w w: Move cursor to your other window.
    6. p: Paste the yanked text.
    7. ctrl-w p: Move cursor back into the first window.
    8. n: Jump to start of next tag.
    9. q: Stop recording and save the macro.

    You can then play the macro back 31 times with the command: 31@q.
  4. You could probably also do it with a :global command.

    https://vi.stackexchange.com/questions/12619/more-efficient-way-of-yanking-text-out-of-tags

vrijdag 9 juni 2017

dinsdag 6 juni 2017

Feh controls

If you want feh to run from ranger, you will have to do "r" and then choose "t" for new screen.
Press "v" for filled screen. And use the spacebar to scroll forward.
Use d to see what the filename is.

maandag 29 mei 2017

Git

Belangrijke Git commands:
$ git remote -v
$ git remote show origin
$ git status

Zorg ervoor dat je daadwerkelijk in de folder bent waar het om gaat, zoals:
~/gitclone/vimrc-file
$ ls
$ index.html  vimrc1.txt  vimrc2.txt

donderdag 25 mei 2017

[Solved]

How to mark posts as solved on fora?
Go to the first post you have posted and press edit. Then advanced edit.
This allows you to edit the title of the post.
Then add [Solved] before the title.

dinsdag 9 mei 2017

Scout command in ranger


scout [-flags...] [--] pattern
Swiss army knife command for searching, traveling and filtering files. The command takes various flags as arguments which can be used to influence its behaviour:
 -a = automatically open a file on unambiguous match
 -e = open the selected file when pressing enter
 -f = filter files that match the current search pattern
 -g = interpret pattern as a glob pattern
 -i = ignore the letter case of the files
 -k = keep the console open when changing a directory with the command
 -l = letter skipping; e.g. allow "rdme" to match the file "readme"
 -m = mark the matching files after pressing enter
 -M = unmark the matching files after pressing enter
 -p = permanent filter: hide non-matching files after pressing enter
 -r = interpret pattern as a regular expression pattern
 -s = smart case; like -i unless pattern contains upper case letters
 -t = apply filter and search pattern as you type
 -v = inverts the match

zondag 7 mei 2017

Asterisk before directories in ranger

TAGS
    Tags are single characters which are displayed left of a filename.  You
    can use tags however you want.  Press "t" to toggle tags and "ut" to
    remove any tags of the selection. The default tag is an Asterisk ("*"),
    but you can use any tag by typing "<tagname>.

Enlarging Libreoffice window completely with command

 You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.