Show full output of command :hi
in scratch window:
:Redir hi
Show full output of command :!ls -al
in scratch window:
#!/usr/bin/env python3 | |
""" | |
SPDX-License-Identifier: MIT https://opensource.org/licenses/MIT | |
Copyright © 2021 [email protected] | |
* Input file is an info.json (with comments) that yt-dlp (https://github.com/yt-dlp/yt-dlp) wrote | |
* Change FIELDS according to your needs |
from telethon import TelegramClient, sync | |
# Use your own values here | |
api_id = '123456' | |
api_hash = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx' | |
channel = 'channel_name' | |
client = TelegramClient('Session_details', api_id, api_hash) | |
phone_number='9199999999' |
body | |
{ | |
margin-top: 1px; | |
margin-right: 3px; | |
margin-left: 2px; | |
margin-bottom: 3px; | |
background: #201F1F; | |
color: white; | |
font-family: Bookerly, Segoe UI, Palatino Linotype, Arial Unicode MS; | |
} |
# Extracted using: $ unzip -p lib/pycharm.jar com/jetbrains/python/PyBundle.properties | grep -B1 INSP.NAME | grep '^#' | sed 's|Inspection||g' | sed -e 's|#\s\{,1\}|# noinspection |' | |
# noinspection PyPep8 | |
# noinspection PyPep8Naming | |
# noinspection PyTypeChecker | |
# noinspection PyAbstractClass | |
# noinspection PyArgumentEqualDefault | |
# noinspection PyArgumentList | |
# noinspection PyAssignmentToLoopOrWithParameter | |
# noinspection PyAttributeOutsideInit |
The operators c
, d
, and y
expect a motion, like w
, e
, etc. The second character in the following pairs is not a motion so it is a NOP and nothing is overridden if we use them in mappings.
cd cm co cp cq cr cs cu cx cy cz
dc dm dq dr ds du dx dy dz
# I've always disliked the "./configure" incantation - it's right here! I | |
# shouldn't need to tell the shell where to look for it. But of course, | |
# putting '.' in your $PATH is terrible -- it's insecure and throws permission | |
# errors if you try to 'execute' regular files. Bash 4's `shopt -s autocd` | |
# solves half the problem; and the ability to override | |
# command_not_found_handle() solves the other. | |
# | |
# This is an OS X-oriented script that attempts to do the most intelligent | |
# thing possible when you enter the name of a file in your $PWD into the bash | |
# prompt. It will: |