⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mh-move.ml

📁 早期freebsd实现
💻 ML
字号:
;  This autoloaded file defines the "^" command in mhe. It marks a message; to be moved into another folder. This mark is represented in two ways:; a "^" character is placed in column 4 of the header line, and the number; of the message is placed in the text of an appropriate "file" command ; in the command buffer. When it is autoloaded, it redefines the function; &mh-re-move (defined as a no-op in the base file) so that it will repeat; the last move command with the same destination but a new source.(defun     (&mh-move	(progn	      (pop-to-buffer (concat "+" mh-folder))	      (beginning-of-line)	      (goto-character (+ (dot) 3))	      (if (| (= (following-char) ' ') (= (following-char) '+'))		  (progn			(setq mh-last-destination			      (get-folder-name "Destination" "" 1))			(&mh-xfer mh-last-destination)		  )	      )	      (another-line)	)    )        (&mh-re-move	(pop-to-buffer (concat "+" mh-folder))	(beginning-of-line)	(goto-character (+ (dot) 3))	(if (| (= (following-char) ' ') (= (following-char) '+'))	    (progn		  (&mh-xfer mh-last-destination)	    )	)	(another-line)    )        (&mh-xfer destn	(progn 	       (setq destn (arg 1))	       (delete-next-character)	       (insert-string "^")	       (setq buffer-is-modified 0)	       (temp-use-buffer "cmd-buffer")	       (beginning-of-file)	       (set "stack-trace-on-error" 0)	       (if (error-occured 		       (re-search-forward 			   (concat "^filem -src +" mh-folder " +" destn))		   )		   (progn 			  (end-of-file)			  (insert-string			      (concat "filem -src +" mh-folder " +" destn "\n"))			  (backward-character)		   )	       )	       (set "stack-trace-on-error" mhe-debug)	       (end-of-line)	       (insert-string (concat " " (&mh-get-msgnum)))	       (setq buffer-is-modified 0)	       (pop-to-buffer (concat "+" mh-folder))	)    ))

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -