- Capital letters do the opposite of small letters in command (Press shift to trigger capital letters)
_(underscore) to move the cursor at the beginning of line (doesn't switch to insert mode)0(zero) moves the cursor to the zeroth position of the line (doesn't switch to insert mode)
$(dollar) to move the cursor at the end of line (doesn't switch to insert mode)d$will delete from wherever your cursor is till the end of the linef<character>to move cursor to the first occurrence of<character>f(to move cursor to first occurence of(
t<character>to move cursor to upto but not on the first occurrence of<character>t(to move cursor to first occurence of(
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Just create a bunch LocString's anywhere | |
| // change Loc.language and you're done | |
| using System.Collections.Generic; | |
| using System; | |
| using System.Collections.Generic; |
Content :
Also you can watch the video.
https://www.youtube.com/watch?v=x8BsNz0715U
- Go to desktop and create a new
Text Documenthere then open it.
- If Termux is closed in the background by Android, the cron service will stop updating your repository and you must open Termux again. Refer to instructions for your device model to disable the killing of certain background applications.
- This may negatively affect your devices battery life. I'm not entirely sure yet.
- Install Termux – Apps on Google Play
- https://www.microsoft.com/en-au/software-download/windows10ISO, for VLC use: https://www.microsoft.com/Licensing/servicecenter/default.aspx
- Press F12 (This opens the developer options of your browser)
- Enable mobile device emulation (On Chrome, it's phone/tablet icon in the top-left of the dev tools pane)
- Refresh the page.
- (optional) https://tb.rg-adguard.net/public.php (fan-made mirrors)
What you'll see now is the option to select your Windows version and language, and it'll download the ISO.
Step 1 - Install and Configure dnscrypt-proxy
sudo su
pacman -S dnscrypt-proxy
cd /etc/dnscrypt-proxy/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # primary HTTPS config | |
| server { | |
| listen 443 ssl; | |
| server_name mislav.net; | |
| ssl_certificate /etc/letsencrypt/live/mislav.net/cert.pem; | |
| ssl_certificate_key /etc/letsencrypt/live/mislav.net/privkey.pem; | |
| root /home/app/blog/_site; | |
| index index.html; |
I use tmux splits (panes). Inside one of these panes there's a Vim process, and it has its own splits (windows).
In Vim I have key bindings C-h/j/k/l set to switch windows in the given direction. (Vim default mappings for windows switching are the same, but prefixed with C-W.) I'd like to use the same keystrokes for switching tmux panes.
An extra goal that I've solved with a dirty hack is to toggle between last active panes with C-\.
Here's how it should work:
NewerOlder
