Sadece mevcut satırın boş olup olmadığını kontrol etmek istiyorum (sadece boşluk içeriyorsa, yine de boş olduğunu düşünüyorum).
İşte ilk versiyonum:
(defun strip-text-properties(txt)
(set-text-properties 0 (length txt) nil txt)
txt)
(defun is-current-line-empty ()
(interactive)
(setq c-line (thing-at-point 'line))
(string-match "^\s*$" (strip-text-properties c-line)))
Geçerli satırın boş olup olmadığını kontrol etmenin en kolay yolu nedir?
\\s-
bunun yerine de olmalı \\s
. Bu tire, elisp normal ifadesinde gereklidir.
\s
eşdeğerdirs
. Belki demek istedin"^\\s*$"
.