Before proceeding, make sure you have backed up all your important data to another device.
Most custom ROMs require a custom recovery. In this section, I will provide the
adb and fastboot (components of platform-tools) are in your| # qpdfview synctex vim synchronization | |
| # for qpdfview (Settings > Behavior > Source editor) | |
| vim --servername vimtex --remote-silent +%2<Enter>zz %1 | |
| # for alias in .bashrc | |
| alias vimtex='vim --servername vimtex' |
Say, you want spotlight to find MacVim. Doing
brew linkapps macvim
creates a symlink in /Applications. But Spotlight seems to ignore it. Instead, remove the symlink
rm /Applications/MacVim.app
| #!/usr/bin/env python | |
| from __future__ import print_function, division | |
| import requests | |
| import getpass | |
| import sys | |
| def get_login_data(): | |
| '''Asks the user for the username and password. Returns a dictionary to be | |
| passed to the /account/login post request. |
Install build dependencies
$ sudo apt-get build-dep vim
Clone git repo
$ git clone https://github.com/vim/vim.git
Change to src directory
| import sys | |
| import os | |
| import numpy as np | |
| def read_deal_vec(filename): | |
| if not os.path.isfile(filename): | |
| print('File not found!') | |
| else: | |
| with open(filename, 'rb') as f: |