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

📄 indent.el

📁 含有多种公开密钥算法、多种块加密、多种数据流加密、多种HASH函数、多种CheckSum校验、多种MAC校验等几十种加密算法的程序
💻 EL
字号:
; This Emacs Lips code defines the indentation style used in Botan. If doesn't; get everything perfectly correct, but it's pretty close. Copy this code into; your .emacs file, or use M-x eval-buffer. Make sure to also set; indent-tabs-mode to nil so spaces are inserted instead.; This style is basically Whitesmiths style with 3 space indents (the Emacs; "whitesmith" style seems more like a weird Whitesmiths/Allman mutant style).; To activate using this style, open the file you want to edit and run this:; M-x c-set-style <RET> and then enter "botan". Alternately, put something; like this in your .emacs file to make it the default style:; (add-hook 'c++-mode-common-hook;   (function (lambda();     (c-add-style "botan" botan t))))(setq botan '(   (c-basic-offset . 3)   (c-comment-only-line-offset . 0)   (c-offsets-alist      (c . 0)      (comment-intro . 0)      (statement-block-intro . 0)      (statement-cont . +)      (substatement . +)      (substatement-open . +)      (block-open . +)      (block-close . 0)      (defun-open . +)      (defun-close . 0)      (defun-block-intro . 0)      (func-decl-cont . +)      (class-open . +)      (class-close . +)      (inclass . +)      (access-label . -)      (inline-open . +)      (inline-close . 0)      (extern-lang-open . 0)      (extern-lang-close . 0)      (inextern-lang . 0)      (statement-case-open +)      (namespace-open . 0)      (namespace-close . 0)      (innamespace . 0)      (label . 0)      )))

⌨️ 快捷键说明

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