美文网首页
Mac 技巧备忘

Mac 技巧备忘

作者: inu1255 | 来源:发表于2016-03-02 19:52 被阅读0次

卸载qq输入法

  1. 打开活动监视器,把qq输入法进程关闭。
  2. finder界面按下shift+command+G, 输入:/library/input methods(系统的资料库), 进入文件夹,找到qq输入法,删掉。
  3. finder界面按下shift+command+G, 输入:~/library/input methods (个人文件夹的资料库), 进入文件夹,找到qq输入法,删掉。

sublime package control配置文件

{
    "bootstrapped": true,
    "channels":
    [
        "https://web.archive.org/web/https://packagecontrol.io/channel_v3.json"
    ],
    "in_process_packages":
    [
    ],
    "installed_packages":
    [
        "Alignment",
        "ApplySyntax",
        "AutoFileName",
        "Babel",
        "BracketHighlighter",
        "DocBlockr",
        "Emmet",
        "ExpandRegion",
        "FileDiffs",
        "HTML-CSS-JS Prettify",
        "JsFormat",
        "JSON Reindent",
        "JSX",
        "MarkdownEditing",
        "OmniMarkupPreviewer",
        "Package Control",
        "phpfmt",
        "ReactJS",
        "SFTP",
        "SublimeCodeIntel",
        "SublimeLinter",
        "SublimeLinter-jsxhint"
    ]
}

sublime 配置文件

{
    "bold_folder_labels": true,
    "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
    "debug": true,
    "folder_exclude_patterns":
    [
        ".svn",
        ".git",
        ".hg",
        "CVS",
        "node_modules",
        "bower_components",
        ".module-cache"
    ],
    "font_face": "Monaco",
    "font_size": 11,
    "highlight_line": true,
    "highlight_modified_tabs": true,
    "ignored_packages":
    [
        "Markdown",
        "Vintage"
    ],
    "indent_to_bracket": true,
    "rulers":
    [
        79
    ],
    "scroll_past_end": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "update_check": false,
    "word_wrap": false
}

sublime 按键配置

[
  {
    "keys": [
      "super+e"
    ],
    "args": {
      "action": "expand_abbreviation"
    },
    "command": "run_emmet_action",
    "context": [
      {
        "key": "emmet_action_enabled.expand_abbreviation"
      }
    ]
  },
  {
    "keys": [
      "tab"
    ],
    "command": "expand_abbreviation_by_tab",
    "context": [
      {
        "operand": "source.js",
        "operator": "equal",
        "match_all": true,
        "key": "selector"
      },
      {
        "key": "preceding_text",
        "operator": "regex_contains",
        "operand": "(\\b(a\\b|div|span|p\\b|button)(\\.\\w*|>\\w*)?([^}]*?}$)?)",
        "match_all": true
      },
      {
        "key": "selection_empty",
        "operator": "equal",
        "operand": true,
        "match_all": true
      }
    ]
  },
  {
    "keys": [
      "super+shift+space"
    ],
    "command": "expand_region"
  },
  {
    "keys": [
      "super+u"
    ],
    "command": "expand_region",
    "args": {
      "undo": true
    },
    "context": [
      {
        "key": "expand_region_soft_undo"
      }
    ]
  }
]

相关文章

  • Mac 技巧备忘

    卸载qq输入法 打开活动监视器,把qq输入法进程关闭。 finder界面按下shift+command+G, 输入...

  • 合并两台Mac电脑本地备忘录

        合并备忘录场景:Mac电脑A中的备忘录全部合并到Mac电脑B中,如果备忘录多的话,一条条合并肯定不是很方便...

  • Mac 配置备忘录

    Mac 备忘录1 Mac 基本软件 打开终端,下载homebrew 用homebrew下载iterm 在iterm...

  • 无标题文章

    备忘录 ``` ```Paragon Camptune X for mac最新破解版这是一款超给力的*mac*磁...

  • MAC相关备忘

    删除OSX launchpad中的无用图标 命令行defaults write com.apple.dock Re...

  • mac权限备忘

    重装系统之后,发现自己的管理员账号没权限。 很多操作必须手动添加sudo才可以执行,但是:比如新建一个项目, 报错...

  • Mac下的终端指定

    这是一个备忘录 用来存储在Mac下的终端指令

  • 【Mac小技巧】

    【Mac小技巧】怎么移动Mac状态栏的图标 「Mac小技巧」教你如何精确调节音量 将原本的一小格变成4格shift...

  • mac shell终端编辑命令行快捷键

    Ctrl-Line技巧提示 Command-Line技巧提示 Open . 技巧提示 参考 mac shell终端...

  • Cocopods安装和升级备忘录

    这是两个多月前写在mac 备忘录上的一个备忘文档,现在分享出来,希望对新手或者需要的人有帮助 cocopods安装...

网友评论

      本文标题:Mac 技巧备忘

      本文链接:https://www.haomeiwen.com/subject/egmnkttx.html