kde-workspace/kate/part
Ivailo Monev e16eb8e85d generic: adjust to KFileItem changes
the camera slave is on the chopping block, libtmp is supposed to be able
to handle PTP too

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2024-05-31 16:55:01 +03:00
..
buffer kate: adjust to Katie changes 2023-11-05 00:49:55 +02:00
completion generic: adjust to KIntNumInput and KDoubleNumInput changes 2024-05-21 09:00:16 +03:00
data generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00
dialogs generic: adjust to KIntNumInput and KDoubleNumInput changes 2024-05-21 09:00:16 +03:00
document generic: adjust to KFileItem changes 2024-05-31 16:55:01 +03:00
kte5 generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00
mode generic: adjust to KIntNumInput and KDoubleNumInput changes 2024-05-21 09:00:16 +03:00
render generic: prepare for Katie changes 2022-12-17 15:43:14 +02:00
schema generic: replace KColorDialog with QColorDialog 2024-04-03 10:48:29 +03:00
search generic: adjust to KMessageWidget changes 2024-04-16 03:24:54 +03:00
spellcheck kate: adjust to KSpeller changes 2024-04-10 01:34:59 +03:00
swapfile generic: adjust to KRun changes 2024-05-12 03:22:02 +03:00
syntax kate: oops 2023-09-01 17:24:56 +03:00
undo generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00
utils generic: adjust to KIntNumInput and KDoubleNumInput changes 2024-05-21 09:00:16 +03:00
variableeditor plasma: implement session manager 2024-05-09 08:33:28 +03:00
view plasma: implement session manager 2024-05-09 08:33:28 +03:00
CMakeLists.txt generic: prepare for KMessageWidget changes 2024-04-16 19:57:29 +03:00
INDENTATION generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00
Messages.sh generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00
README.vimode generic: move sub-projects from kde-baseapps [ci reset] 2022-05-14 21:56:54 +03:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

To enable the VI input mode, go to Settings → Configure Kate... → Editing →
VI Input Mode. It can also be toggled with the “VI Input Mode” setting in the
“Edit” menu (default shortcut key is Meta+Ctrl+V  where Meta usually is the
Windows key).

Vim incompatibilities:

1)
    Kate:   'O' and 'o' opens [count] new lines and puts you in insert mode
    Vim:    'O' and 'o' opens a new line and inserts text [count] times when
            exiting insert mode

2)
    Kate:   U and <c-r> is redo
    Vim:    <c-r> is normal redo, U is used to "undo all latest changes on one line"

3)
    Kate:   :print shows the 'print' dialogue
    Vim:    :print prints the lines of the given range like its grandfather ed

4)
    Kate:   'Y' yanks to end of line.  This is described as 'more
            logical' in the Vim documentation (:help Y).
    Vim:    'Y' yanks whole line, just like 'yy'.