xtodo emacs

(file-exists-p "c:/Users/xah/web/xahlee_info/xtodo/xtodo_emacs_code.html.....")

most important

emacs to review

code update

xah html mode command changes:

This command was named xah-html-wrap-p-tag. Changed around 2021-08-17.

review

work on emacs lisp

emacs lisp XahEmacs key design

2021-08-08 notes. designing a key system for whole XahEmacs

now, with XahEmacs, several packages, with xah-fly-keys system, there needs to be a scheme for the leader keys. For example, gnu emacs has Emacs Keys Overview. I needd a scheme for XahEmacs, so the whole is consistant, as a secondary requirement to key efficiency and ergonomics.

here's outline of current xah-fly-keys

..[hilight]  p.replace       g.close c.[open]
e.[insert] u.switchBuff     h.[help] t.[edit]
j.copyAll k.pasteOrPrev     m.diredJump w.[eval/del]

emacs website minor

2021-08-16 need to update these, and put them into emacs lisp example

Tags

Links

CSS

Misc

elisp format 2022-03-24
elisp format 2022-03-24
(setq xNormalList
      '(("mary" 23)
        ("john" 24)
        ("smith" 33)))

(setq xAssoList
      '(("mary" . 23)
        ("john" . 24)
        ("smith" . 33)))

(proper-list-p (nth 0 xNormalList) )
;; 1

(proper-list-p (nth 0 xAssoList))
;; nil

(cdr (car xNormalList))
;; (23)
(cdr (car xAssoList))
;; 23

;; in a normal proper list, each element, if u want it to be pairs, is
;; (cons a (cons b nil))

;; item in a asso list is
;; (cons a b)