IPython Quick Keyboard Search for Keyboard

Is there a keyboard shortcut for finding text in an IPython Notebook?

I looked under Help | Keyboard shortcuts and there are many interesting keyboard shortcuts, but not one for text search?

enter image description here


The laptop runs on FireFox on Ubuntu.

+15
source share
4 answers

Jupyter has a team find-and-replace. This is key binding F(command mode):

enter image description here

, ( ), Jupyter . Replace in selected cells , - :

enter image description here


(. shift + ctrl + P, )


+25

: Embarassed: "" " ". Firefox - ctrl - F.

+1

Jupyter Lab v1.0.2, CTRL + F, , .

jupyter , . CTRL + F.

jupyter ( ):

  • \
  • User Preferencec:
{
    "shortcuts": [
    {
            "command": "documentsearch:start",
            "keys": [
                "Accel F"
            ],
            "selector": ".jp-mod-searchable",
            "disabled": true
        }
    ]
}

"disabled": true Browser CTRL + F Jupyter Lab.

+1
  1. , .
  2. f.

!

0

Source: https://habr.com/ru/post/1626786/


All Articles