Guest User

Untitled

a guest
Jul 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. (defun 4spaces (beginning end)
  2. "add 4 spaces to a block,
  3. good for code markup in various wiki/blogs"
  4. (interactive "r")
  5. (save-excursion
  6. (goto-char beginning)
  7. (while (re-search-forward "\\(^\\)" end t) ;working!
  8. (replace-match " "))))
  9.  
  10.  
  11. but when I try to indent something like this:
  12.  
  13. kajds
  14. kadsj
  15. kadsj
  16.  
  17. it ends up indenting all but the last line, like so:
  18.  
  19. kajds
  20. kadsj
  21. kadsj
Add Comment
Please, Sign In to add comment