- Make sure you have Emacs with treesitter support:
M-:
(treesit-available-p)
RET
should returnt
- Make sure you have installed python treesitter grammar
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
# dircolors for WSL | |
# Usage: eval `dircolors ~/.dircolors.wsl` (bash) | |
# http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors | |
TERM Eterm | |
TERM ansi | |
TERM color-xterm | |
TERM con[0-9]*x[0-9]* | |
TERM cons25 |
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
#!/usr/bin/env python | |
"""Replace line breaks, from one format to another.""" | |
from __future__ import print_function | |
import argparse | |
import glob | |
import os | |
import sys |