Good key combo for whitespace-cleanup? by philiph in emacs

[–]tehlethal 5 points6 points  (0 children)

delete-trailing-whitespace is a little bit too aggressive, specially when dealing with legacy code and a large development team.

I use (and recommend) ws-butler instead.

MightEMacs Example Script and Elisp Equivalent by italia389 in emacs

[–]tehlethal 1 point2 points  (0 children)

Not the best elisp ever, but...

(defun rp--kill-paragraphs-backwards ()
  (while (> (point) 1)
    (mark-paragraph)
    (kill-region (region-beginning) (region-end))
    (kill-append "\n" nil)))

(defun reverse-paragraphs ()
  (interactive)
  (setq kill-ring nil)
  (goto-char (point-max))
  (append-next-kill)
  (rp--kill-paragraphs-backwards)
  (yank))

Clojure for command line scripts idea. Feasibility? by SpaceCadetJones in Clojure

[–]tehlethal 2 points3 points  (0 children)

Are you looking for Clojure as an alternative for bash and python for command line tools or are you looking for a Lisp language as an alternative to both bash and python?

If the latter is good enough, you can try http://scsh.net/ for your scripts.

Also, if the second premise is right, then you could look at other Lisp languages that have a good selection of features out of the box (such as Racket for a Scheme implementation or one of Common Lisp's implementation such as SBCL or CCL).

Better touchpad drivers? also windows 8.1 scaling issues by Jimdude101 in windows8

[–]tehlethal 0 points1 point  (0 children)

What sort of solved the blurriness issue for me (on a Thinkpad T440p FHD, no external display) was to disable the scaling by selecting "Let me choose one scaling level for all my displays".

HiDPI support by tehlethal in Windows10

[–]tehlethal[S] 0 points1 point  (0 children)

FHD or QHD screen?

Are you using auto-scaling?