aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-09-29 12:24:06 +0300
committernkozlovskiy <nmk@ydb.tech>2023-09-29 12:41:34 +0300
commite0e3e1717e3d33762ce61950504f9637a6e669ed (patch)
treebca3ff6939b10ed60c3d5c12439963a1146b9711 /contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py
parent38f2c5852db84c7b4d83adfcb009eb61541d1ccd (diff)
downloadydb-e0e3e1717e3d33762ce61950504f9637a6e669ed.tar.gz
add ydb deps
Diffstat (limited to 'contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py')
-rw-r--r--contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py104
1 files changed, 104 insertions, 0 deletions
diff --git a/contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py b/contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py
new file mode 100644
index 0000000000..6c2b1ef70c
--- /dev/null
+++ b/contrib/python/ipython/py3/IPython/terminal/shortcuts/auto_match.py
@@ -0,0 +1,104 @@
+"""
+Utilities function for keybinding with prompt toolkit.
+
+This will be bound to specific key press and filter modes,
+like whether we are in edit mode, and whether the completer is open.
+"""
+import re
+from prompt_toolkit.key_binding import KeyPressEvent
+
+
+def parenthesis(event: KeyPressEvent):
+ """Auto-close parenthesis"""
+ event.current_buffer.insert_text("()")
+ event.current_buffer.cursor_left()
+
+
+def brackets(event: KeyPressEvent):
+ """Auto-close brackets"""
+ event.current_buffer.insert_text("[]")
+ event.current_buffer.cursor_left()
+
+
+def braces(event: KeyPressEvent):
+ """Auto-close braces"""
+ event.current_buffer.insert_text("{}")
+ event.current_buffer.cursor_left()
+
+
+def double_quote(event: KeyPressEvent):
+ """Auto-close double quotes"""
+ event.current_buffer.insert_text('""')
+ event.current_buffer.cursor_left()
+
+
+def single_quote(event: KeyPressEvent):
+ """Auto-close single quotes"""
+ event.current_buffer.insert_text("''")
+ event.current_buffer.cursor_left()
+
+
+def docstring_double_quotes(event: KeyPressEvent):
+ """Auto-close docstring (double quotes)"""
+ event.current_buffer.insert_text('""""')
+ event.current_buffer.cursor_left(3)
+
+
+def docstring_single_quotes(event: KeyPressEvent):
+ """Auto-close docstring (single quotes)"""
+ event.current_buffer.insert_text("''''")
+ event.current_buffer.cursor_left(3)
+
+
+def raw_string_parenthesis(event: KeyPressEvent):
+ """Auto-close parenthesis in raw strings"""
+ matches = re.match(
+ r".*(r|R)[\"'](-*)",
+ event.current_buffer.document.current_line_before_cursor,
+ )
+ dashes = matches.group(2) if matches else ""
+ event.current_buffer.insert_text("()" + dashes)
+ event.current_buffer.cursor_left(len(dashes) + 1)
+
+
+def raw_string_bracket(event: KeyPressEvent):
+ """Auto-close bracker in raw strings"""
+ matches = re.match(
+ r".*(r|R)[\"'](-*)",
+ event.current_buffer.document.current_line_before_cursor,
+ )
+ dashes = matches.group(2) if matches else ""
+ event.current_buffer.insert_text("[]" + dashes)
+ event.current_buffer.cursor_left(len(dashes) + 1)
+
+
+def raw_string_braces(event: KeyPressEvent):
+ """Auto-close braces in raw strings"""
+ matches = re.match(
+ r".*(r|R)[\"'](-*)",
+ event.current_buffer.document.current_line_before_cursor,
+ )
+ dashes = matches.group(2) if matches else ""
+ event.current_buffer.insert_text("{}" + dashes)
+ event.current_buffer.cursor_left(len(dashes) + 1)
+
+
+def skip_over(event: KeyPressEvent):
+ """Skip over automatically added parenthesis/quote.
+
+ (rather than adding another parenthesis/quote)"""
+ event.current_buffer.cursor_right()
+
+
+def delete_pair(event: KeyPressEvent):
+ """Delete auto-closed parenthesis"""
+ event.current_buffer.delete()
+ event.current_buffer.delete_before_cursor()
+
+
+auto_match_parens = {"(": parenthesis, "[": brackets, "{": braces}
+auto_match_parens_raw_string = {
+ "(": raw_string_parenthesis,
+ "[": raw_string_bracket,
+ "{": raw_string_braces,
+}