-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mac Alfred快速复制剪贴板和指定文本.html
182 lines (171 loc) · 12.9 KB
/
Mac Alfred快速复制剪贴板和指定文本.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="littlewhite" />
<meta name="copyright" content="littlewhite" />
<meta property="og:type" content="article" />
<meta name="twitter:card" content="summary">
<meta name="keywords" content="Mac, Skill, " />
<meta property="og:title" content="Mac Alfred快速复制剪贴板和指定文本 "/>
<meta property="og:url" content="https://chukeer.github.io/Mac Alfred快速复制剪贴板和指定文本.html" />
<meta property="og:description" content="这里主要考虑如下两种需求 快速唤出剪贴板历史,并复制某一项 快速复制某一段固定内容的文本 第一项在Mac上有很多小工具实现,第二项在输入密码时经常会碰到,比如我在终端sudo执行命令或者连接redis数据库时需要输入密码,这些密码我又不想人肉记住,希望每次要输入时一个快捷键就能搞定,这个有点类似windows上xshell的快速命令集,点一个按钮就可以自动在终端上输入指定的文本,非常方便 这两个需求Alfred都可以轻松搞定 打开Alfred剪贴板功能¶ Alfred的剪贴板功能默认是关闭的,在preferences->Features->Clipboard->History的Clipboard History后面打勾即可打开,还可以选择剪贴板历史数据保存的时间 新建snip¶ snip可以满足需求2,其实就是一个文本片段,并指定一个name和keyword,这样即可通过name或keyword搜索到文本片段,并快速复制粘贴 使用¶ 可以通过默认快捷键option+cmd+C唤出剪贴板和snip界面 输入关键字可以搜索剪贴板和snip,回车之后会将内容直接粘贴到之前的app上。对于snip还有一个打开方式,先唤出Alfred搜索框,输入默认关键词snip和搜索内容即可对指定的snip进行复制和粘贴 这两种方式选中之后会将内容粘贴到之前的app上,也可以设置选中之后只复制而不粘贴,在preferences->Features->Clipboard->Advanced下去掉Pasting后面的勾即可 小结¶ 之前在Mac上使用iTerm2时很羡慕windows上xshell的快速命令按钮,点一下就可以输入指定文本,现在看来,有了Alfred,Mac才真正称之为Mac" />
<meta property="og:site_name" content="楚客" />
<meta property="og:article:author" content="littlewhite" />
<meta property="og:article:published_time" content="2016-10-10T00:00:00+08:00" />
<meta property="" content="2016-10-10T00:00:00+08:00" />
<meta name="twitter:title" content="Mac Alfred快速复制剪贴板和指定文本 ">
<meta name="twitter:description" content="这里主要考虑如下两种需求 快速唤出剪贴板历史,并复制某一项 快速复制某一段固定内容的文本 第一项在Mac上有很多小工具实现,第二项在输入密码时经常会碰到,比如我在终端sudo执行命令或者连接redis数据库时需要输入密码,这些密码我又不想人肉记住,希望每次要输入时一个快捷键就能搞定,这个有点类似windows上xshell的快速命令集,点一个按钮就可以自动在终端上输入指定的文本,非常方便 这两个需求Alfred都可以轻松搞定 打开Alfred剪贴板功能¶ Alfred的剪贴板功能默认是关闭的,在preferences->Features->Clipboard->History的Clipboard History后面打勾即可打开,还可以选择剪贴板历史数据保存的时间 新建snip¶ snip可以满足需求2,其实就是一个文本片段,并指定一个name和keyword,这样即可通过name或keyword搜索到文本片段,并快速复制粘贴 使用¶ 可以通过默认快捷键option+cmd+C唤出剪贴板和snip界面 输入关键字可以搜索剪贴板和snip,回车之后会将内容直接粘贴到之前的app上。对于snip还有一个打开方式,先唤出Alfred搜索框,输入默认关键词snip和搜索内容即可对指定的snip进行复制和粘贴 这两种方式选中之后会将内容粘贴到之前的app上,也可以设置选中之后只复制而不粘贴,在preferences->Features->Clipboard->Advanced下去掉Pasting后面的勾即可 小结¶ 之前在Mac上使用iTerm2时很羡慕windows上xshell的快速命令按钮,点一下就可以输入指定文本,现在看来,有了Alfred,Mac才真正称之为Mac">
<title>Mac Alfred快速复制剪贴板和指定文本 · 楚客
</title>
<!--
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.1/css/font-awesome.css" rel="stylesheet">
--!>
<link href="https://chukeer.github.io/theme/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="https://chukeer.github.io/theme/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://chukeer.github.io/theme/css/pygments.css" media="screen">
<link rel="stylesheet" type="text/css" href="https://chukeer.github.io/theme/tipuesearch/tipuesearch.css" media="screen">
<link rel="stylesheet" type="text/css" href="https://chukeer.github.io/theme/css/elegant.css" media="screen">
<link rel="stylesheet" type="text/css" href="https://chukeer.github.io/theme/css/custom.css" media="screen">
</head>
<body>
<div id="content-sans-footer">
<div class="navbar navbar-static-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="https://chukeer.github.io/"><span class=site-name>楚客</span></a>
<div class="nav-collapse collapse">
<ul class="nav pull-right top-menu">
<li ><a href="https://chukeer.github.io">Home</a></li>
<li ><a href="https://chukeer.github.io/categories.html">Categories</a></li>
<li ><a href="https://chukeer.github.io/tags.html">Tags</a></li>
<li ><a href="https://chukeer.github.io/archives.html">Archives</a></li>
<li><form class="navbar-search" action="https://chukeer.github.io/search.html" onsubmit="return validateForm(this.elements['q'].value);"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input"></form></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span1"></div>
<div class="span10">
<article>
<div class="row-fluid">
<header class="page-header span10 offset2">
<h1><a href="https://chukeer.github.io/Mac Alfred快速复制剪贴板和指定文本.html"> Mac Alfred快速复制剪贴板和指定文本 </a></h1>
</header>
</div>
<div class="row-fluid">
<div class="span2 table-of-content">
<nav>
<h4>Contents</h4>
<div class="toc">
<ul>
<li><a href="#alfred">打开Alfred剪贴板功能</a></li>
<li><a href="#snip">新建snip</a></li>
<li><a href="#_1">使用</a></li>
<li><a href="#_2">小结</a></li>
</ul>
</div>
</nav>
</div>
<div class="span8 article-content">
<p>这里主要考虑如下两种需求</p>
<ol>
<li>快速唤出剪贴板历史,并复制某一项</li>
<li>快速复制某一段固定内容的文本</li>
</ol>
<p>第一项在Mac上有很多小工具实现,第二项在输入密码时经常会碰到,比如我在终端sudo执行命令或者连接redis数据库时需要输入密码,这些密码我又不想人肉记住,希望每次要输入时一个快捷键就能搞定,这个有点类似windows上xshell的快速命令集,点一个按钮就可以自动在终端上输入指定的文本,非常方便</p>
<p>这两个需求Alfred都可以轻松搞定</p>
<h3 id="alfred">打开Alfred剪贴板功能<a class="headerlink" href="#alfred" title="Permanent link">¶</a></h3>
<p>Alfred的剪贴板功能默认是关闭的,在preferences->Features->Clipboard->History的Clipboard History后面打勾即可打开,还可以选择剪贴板历史数据保存的时间</p>
<p><img alt="" src="http://littlewhite.us/pic/Alfred-enable-clipboard-history.jpg"/></p>
<h3 id="snip">新建snip<a class="headerlink" href="#snip" title="Permanent link">¶</a></h3>
<p>snip可以满足需求2,其实就是一个文本片段,并指定一个name和keyword,这样即可通过name或keyword搜索到文本片段,并快速复制粘贴</p>
<p><img alt="" src="http://littlewhite.us/pic/Alfred-create-snip.jpg"/></p>
<h3 id="_1">使用<a class="headerlink" href="#_1" title="Permanent link">¶</a></h3>
<p>可以通过默认快捷键option+cmd+C唤出剪贴板和snip界面</p>
<p><img alt="" src="http://littlewhite.us/pic/Alfred-call-clipboard.jpg"/></p>
<p>输入关键字可以搜索剪贴板和snip,回车之后会将内容直接粘贴到之前的app上。对于snip还有一个打开方式,先唤出Alfred搜索框,输入默认关键词snip和搜索内容即可对指定的snip进行复制和粘贴</p>
<p><img alt="" src="http://littlewhite.us/pic/Alfred-call-snip.jpg"/></p>
<p>这两种方式选中之后会将内容粘贴到之前的app上,也可以设置选中之后只复制而不粘贴,在preferences->Features->Clipboard->Advanced下去掉Pasting后面的勾即可</p>
<p><img alt="" src="http://littlewhite.us/pic/Alfred-disable-auto-paste.jpg"/></p>
<h3 id="_2">小结<a class="headerlink" href="#_2" title="Permanent link">¶</a></h3>
<p>之前在Mac上使用iTerm2时很羡慕windows上xshell的快速命令按钮,点一下就可以输入指定文本,现在看来,有了Alfred,Mac才真正称之为Mac</p>
<hr/>
<aside>
<nav>
<ul class="articles-timeline">
<li class="previous-article">« <a href="https://chukeer.github.io/Linux文件读写机制及优化方式.html" title="Previous: Linux文件读写机制及优化方式">Linux文件读写机制及优化方式</a></li>
<li class="next-article"><a href="https://chukeer.github.io/深入理解字符编码.html" title="Next: 深入理解字符编码">深入理解字符编码</a> »</li>
</ul>
</nav>
</aside>
</div>
<section>
<div class="span2" style="float:right;font-size:0.9em;">
<table class="table">
<!-- <time pubdate="pubdate" datetime="2016-10-10T00:00:00+08:00">10 10, 2016</time> -->
<tr>
<td>Published</td>
<td><time pubdate="pubdate" datetime="2016-10-10T00:00:00+08:00">2016-10-10</time></td>
</tr>
<tr>
<td>Category</td>
<td><a class="category-link" href="https://chukeer.github.io/categories.html#skill-ref">Skill</a></td>
</tr>
<tr>
<td>Tags</td>
<td>
<ul class="list-of-tags tags-in-article">
<li><a href="https://chukeer.github.io/tags.html#mac-ref">Mac
<span>7</span>
</a></li>
</ul>
</td>
</tr>
</table>
</div>
</section>
</div>
</article>
</div>
<div class="span1"></div>
</div>
</div>
<div id="push"></div>
</div>
<footer>
<div id="footer">
<ul class="footer-content">
<li class="elegant-power">Powered by <a href="http://getpelican.com/" title="Pelican Home Page">Pelican</a>. Theme: <a href="http://oncrashreboot.com/pelican-elegant" title="Theme Elegant Home Page">Elegant</a> by <a href="http://oncrashreboot.com" title="Talha Mansoor Home Page">Talha Mansoor</a></li>
</ul>
</div>
</footer> <!--
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
-->
<script src="https://chukeer.github.io/theme/js/jquery.min.js"></script>
<script src="https://chukeer.github.io/theme/js/bootstrap.min.js"></script>
<script>
function validateForm(query)
{
return (query.length > 0);
}
</script>
<script>
$("div.article-content table").addClass("table table-hover");
</script>
</body>
<!-- Theme: Elegant built for Pelican
License : http://oncrashreboot.com/pelican-elegant -->
</html>