John exam

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/45

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:47 PM on 4/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

46 Terms

1
New cards

M-x Replace string

replace word

2
New cards

C-c C-c

run chunk/block

3
New cards

C-z

suspend emacs allowing you to return to terminal

4
New cards

C-e

end of line

5
New cards

M-f

forward a word

6
New cards

M-b

backward a word

7
New cards

C-u

scroll next screenful

8
New cards

M-u

scroll previous screenful

9
New cards

C-x C-x

swap marker and cursor

10
New cards

C-w

kill/cut the marked region

11
New cards

M-w

copy the marked region

12
New cards

M-y

After C-y, kills copied text

13
New cards

M-%

interactively replace text

14
New cards

C-x C-b

shows a list of open buffers

15
New cards

C-x b

prompts for buffer name

16
New cards

C-h c or C-h k

describe key : type command to see its function

17
New cards

C-x o

move to the other window

18
New cards

C-x C-f

find/open a file; if it doesnt exist; it creates a new buffer for it

19
New cards

C-x C-w

save as/write buffer to its associated file

20
New cards

C-x i

inserts content of another file into the current buffer

21
New cards

C-n

next line

22
New cards

C-p

previous line

23
New cards

C-a

beginning of line

24
New cards

M ->

go to the end of the buffer

25
New cards

M -<

go to the beginning of buffer/file

26
New cards

C-d

delete character under cursor

27
New cards

C-k

kill from cursr to the end of line

28
New cards

C-SPACE

set mark

29
New cards

C-y

yank/paste the copied text

30
New cards

C-_ OR C-x u

undo previous command

31
New cards

C-s

search forward

32
New cards

c-r

search backward

33
New cards

C-g

cancel current search or command

34
New cards

C-x 2

split current window into two

35
New cards

C-x 1

make current window the only window

36
New cards

M-x shell

opens a shell buffer within emacs

37
New cards

M-x indent region

fixes indentation

38
New cards

M-x replace-regexp

regex replace

39
New cards

M-x R

starts r

40
New cards

C-c C-n

run 1 line

41
New cards

q()

quits R

42
New cards

C-q C-j

inserts a newline character

43
New cards

C-x d

browse files

44
New cards

chmod +x file.sh

makes script executable

45
New cards

./ file.sh

run shell script

46
New cards