Collection of useful vim tips and vim features I've learned over the years
If you are working inside of a JSON file, you can autoformat it by using Python's built-in json module.
Running this command:
| # Project Title | |
| One Paragraph of project description goes here | |
| ## Getting Started | |
| These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. | |
| ### Prerequisites |
Collection of useful vim tips and vim features I've learned over the years
If you are working inside of a JSON file, you can autoformat it by using Python's built-in json module.
Running this command:
| import IPython | |
| import json | |
| from pprint import pprint as pp | |
| from deepdiff import DeepDiff as diff | |
| alias emb IPython.embed() |