-
Notifications
You must be signed in to change notification settings - Fork 3
/
testimonials.html
819 lines (653 loc) · 23.8 KB
/
testimonials.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Testimonials</title>
<link rel="stylesheet" type="text/less" href="./style/less/o-blog.less"/>
<link rel="stylesheet" type="text/css" href="./style/keys.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="generator" content="o-blog version 1.2-137-gea23db7"/>
<link rel="stylesheet" href="./style/keys.css" type="text/css" />
<script src="./style/js/less-1.3.0.min.js" type="text/javascript"></script>
<script src="./style/js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="./style/bootstrap/js/bootstrap-modal.js" type="text/javascript"></script>
<script src="./style/bootstrap/js/bootstrap-transition.js" type="text/javascript"></script>
<script src="./style/bootstrap/js/bootstrap-dropdown.js" type="text/javascript"></script>
<script src="./style/bootstrap/js/bootstrap-collapse.js" type="text/javascript"></script>
<script src="./style/js/prettify.js" type="text/javascript"></script>
<script src="./style/js/o-blog.linenumber.js" type="text/javascript"></script>
<script src="./style/js/o-blog-fix.js" type="text/javascript"></script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<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="./index.html">ergoemacs-mode</a>
<div class="nav-collapse collapse">
<ul>
<li><a href="./features.html"><i>icon-cog icon-white</i> Features</a>
</li>
<li><a href="#"><i>icon-book icon-white</i> Documentation</a>
<ul>
<li><a href="./key-setup.html">Included Key Themes and Keyboard Layouts</a>
</li>
<li><a href="./cua-conflict.html">Preserving Emacs Commands while maintaining familiar shortcuts</a>
</li>
<li>
</li>
<li><a href="./key-themes.html">Key Themes</a>
</li>
<li><a href="./keyboard-layouts.html">Keyboard Layouts</a>
</li>
<li><a href="./minor-modes.html">Changes to Modes</a>
</li>
<li>
</li>
<li><a href="design-basis.html">Design Basis</a>
</li>
<li>
</li>
<li><a href="./faq.html">FAQ</a>
</li>
<li>
</li>
<li><a href="./bug-report.html">Bug report</a>
</li>
</ul>
</li>
<li><a href="#"><i>icon-file icon-white</i> Tips</a>
<ul>
<li><a href="./gradual-adoption.html">Gradual Adoption</a>
</li>
<li><a href="./system-wide.html">System Wide Keys</a>
</li>
<li><a href="./customize-keys.html">Customizing your keys</a>
</li>
<li>
</li>
<li><a href="./aliases.html">Making Commands Easier to Type</a>
</li>
<li><a href="./smart-commands.html">Smart Commands</a>
</li>
</ul>
</li>
<li><a href="./testimonials.html"><i>icon-comments-alt icon-white</i> Testimonials</a>
</li>
<li><a href="./changelog.html"><i>icon-pencil icon-white</i> Changelog</a>
</li>
<li><a href="./roadmap.html"><i>icon-tasks icon-white</i> Roadmap</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="subnav subnav-fixed visible-desktop">
<div class="container">
<ul class="breadcrumb">
<li><a href="./index.html">Home</a> <span class="divider">/</span></li>
<li>Testimonials</li>
</ul>
</div>
</div>
<div id="page" class="container">
<article>
<div class="article-content">
<p>
This page collects testimonial for ergoemacs-mode. Thank you. I
appreciate them very much. Your nice words keep me going. – Xah Lee
</p>
<div id="outline-container-1" class="outline-3">
<h3 id="sec-1">Paul Michael Reilly – 2013-06-07</h3>
<div class="outline-text-3" id="text-1">
<p><a href="https://groups.google.com/forum/#!topic/ergoemacs/ileUMQ0M3Lc">Posted Here</a>
</p><blockquote>
<p>After some 30 years of using Emacs constantly, I recently switched
from using Microsoft keyboards (of various sorts) to using Apple
keyboards. Needless to say, Emacs Pinky arose and I found myself
consuming most all of what Xah Lee has written in the area of using
Emacs ergonomically with Apple keyboards. Most impressive material.
</p>
<p>
Being a bleeding edge Emacs User (and occasional developer, although
it embarrasses me to think about how long it has been since I made any
substantial contributions), I use the development nightly builds as a
matter of course. So when I bit the bullet and installed ErgoEmacs,
my instance blew up (in that nothing worked as expected) and I decided
to back off a bit from going whole hog. [Mea culpa, but I did not
have the time to debug the problems. At least not yet.]
</p>
<p>
To make a long story shorter, I embraced the notion of remapping keys
to use the recommended ErgoEmacs layout, but tried to shortcut the
process by turning "caps lock" into a "menu" key and creating key
sequences that were productive for me; remapping the "control" key to
"command", the "option" keys to "control" and the "command" keys to
"option". But I did not take the pains of programmatically changing
the key bindings for other packages (like org-mode) so I quickly ran
into hassles.
</p>
<p>
To resolve the issue of other package interference with the ErgoEmacs
keybindings I used (on Meta), I switched back to using the Mac default
modifier keys and mapped the ErgoEmacs bindings to the "command" keys
via Super.
</p>
<p>
One of Xah's best suggestions for me was the notion of "curled thumbs"
to symmetrically type the Super keys. That has been a huge win, both
in eliminating Emacs Pinky and improving my typing productivity. Who
knew? :-)
</p>
<p>
I am still a bit anxious that OS X will intervene on some of my
rebindings with the "command" key in particular but so far so good.
</p>
<p>
In all of this work that I've done, the major factor has been
significantly reducing the need to use C-<key> and M-<key> chords and
instead using "menu" key sequences and s-<key> chords.
</p>
<p>
Another factor has been standardizing on the short Apple keyboard (the
one found on recent Apple laptops) which I once hated because of the
lack of "control" key symmetry. I found that once I started using
curled thumbs for chords, the short keyboard actually worked quite
well for me. Especially since I use some half dozen MacBook Air/Pro
laptops and Mac Mini systems on a regular basis.
</p>
<p>
There are probably a few other steps taken that I have forgotten but I
think this captures most of a positive experience in embracing
ErgoEmacs keyboarding.
</p>
<p>
fwiw,
</p>
<p>
-pmr
</p>
</blockquote>
</div>
</div>
<div id="outline-container-2" class="outline-3">
<h3 id="sec-2">fleontrotsky – 2012-10-12</h3>
<div class="outline-text-3" id="text-2">
<blockquote>
<p>Thanks to @xah<sub>lee</sub> for ergo-emacs. If #emacs could become my prime
editor for windows, I would be exuberant!
</p>
</blockquote>
<ul>
<li><a href="https://twitter.com/fleontrotsky">fleontrotsky</a>
</li>
</ul>
</div>
</div>
<div id="outline-container-3" class="outline-3">
<h3 id="sec-3">Hacker News Mentions – 2012-10-12</h3>
<div class="outline-text-3" id="text-3">
<ul>
<li><a href="https://news.ycombinator.com/item?id=3386023">Emacs for the rest of us</a> (Posted by macco)
</li>
<li><a href="https://news.ycombinator.com/item?id=1510146">ErgoEmacs</a>
</li>
<li><a href="https://news.ycombinator.com/item?id=695893">Ergoemacs Keybindings</a> (2009-07-09 By Xichekolas)
</li>
</ul>
</div>
</div>
<div id="outline-container-4" class="outline-3">
<h3 id="sec-4">Delicious bookmark and comments</h3>
<div class="outline-text-3" id="text-4">
<p><a href="https://previous.delicious.com/url/aa40f8106085d7e6dd0e218d0350f5c8">Delicious.com bookmark site comments</a>
</p>
</div>
</div>
<div id="outline-container-5" class="outline-3">
<h3 id="sec-5">Jeffrey E Pace – 2011-12-30</h3>
<div class="outline-text-3" id="text-5">
<blockquote>
<p>I just spent three days trying out Xah Lee's ErgoEmacs – ergonomic
Emacs keybindings – and I've been impressed.
</p>
</blockquote>
<p>
<a href="http://jpace.wordpress.com/tag/ergoemacs/">ErgoEmacs keybinding review</a>
</p></div>
</div>
<div id="outline-container-6" class="outline-3">
<h3 id="sec-6">Joseph Buchignani – 2011-11-21</h3>
<div class="outline-text-3" id="text-6">
<blockquote>
<p>Xah Lee's Ergoemacs is five different kinds of awesome.
</p>
</blockquote>
<p>
<a href="http://www.cyborganize.org/clarity/software/emacs-org-mode-installation-configuration-and-tutorial/installing-and-using-ergoemacs-for-intermediate-emacs-users/">Installing and using Ergoemacs</a>
</p>
</div>
</div>
<div id="outline-container-7" class="outline-3">
<h3 id="sec-7">Don Womick – 2010-08-17</h3>
<div class="outline-text-3" id="text-7">
<blockquote>
<p>From: Don Womick
Subject: [Orgmode] ErgoEmacs
Date: Sat, 14 Aug 2010 09:07:58 -0400
I've just found ErgoEmacs (<a href="http://ergoemacs.org">http://ergoemacs.org</a>), another Emacs distribution for Windows that tries to make Emacs easy to use for ordinary users… and it does so: I was able to use it immediately, with all the standard Windows shortcuts–the only things that tripped me up briefly were the file commands (C-xf moved to C-o and C-xw moved to C-w), and that they moved M-x to M-a (M-x now cuts the entire line). This looks like a distro that might ease the learning curve enough to drive more widespread adoption of Emacs (and org-mode!): it really does seem to be as easy to use as Notepad right out of the box, yet doesn't take away any of the power of Emacs (as far as I can tell, except that I did have to load an org-mode file before capture would work, but that may be a setup problem on my part). If you're on Windows, take a look and see what you think… and for org newbies on win32, I think this is the version I would recommend.
</p>
<p>
–Don
</p>
<p>
lists.gnu.org emacs-orgmode
</p>
</blockquote>
<ul>
<li><a href="http://www.womick.com/Home.html">Don's website</a>
</li>
<li><a href="http://lists.gnu.org/archive/html/emacs-orgmode/2010-08/msg00566.html">Original Message</a>
</li>
</ul>
</div>
</div>
<div id="outline-container-8" class="outline-3">
<h3 id="sec-8">Kristian Hellquist – 2010-07-19</h3>
<div class="outline-text-3" id="text-8">
<blockquote>
<p>I started using ergoemacs last week, and it looks promising. It lacked
a swedish keyboard layout though
</p>
<p>
Thanks for your great blog, work and opinions about emacs.
</p>
<p>
/Kristian Hellquist
</p>
</blockquote>
<p>
Thanks to <a href="https://twitter.com/meeiw">Kristian Hellquist</a> for contributing a Swedish layout. It's
in ErgoEmacs Keybinding v5.3.4.
</p>
</div>
</div>
<div id="outline-container-9" class="outline-3">
<h3 id="sec-9">jeangjs.blogspot.com – 2010-06-09</h3>
<div class="outline-text-3" id="text-9">
<blockquote>
<p>2009年11月4日星期三
</p>
<p>
ErgoEmacs 初探
</p>
<p>
一直以來,我都是從 Xah's Emacs Tutorial 獲得一些 Emacs 使用上的小技巧。前幾天突然發現 Xah Lee 弄了一個專案 — ErgoEmacs。一個很有趣的專案,同時也是破壞 Emacs 傳統的專案。
</p>
<p>
Emacs 專屬的 keybindings 可以說是一項足以自豪的傳統。對於那些不使用滑鼠的高手來說,keybindings 一定背的滾瓜瀾熟。但非人使用 Emacs 超過十年了,熟悉的 keybindings 不會多過 10 個。並不是非人不想背下來,而是太複雜了,今天背了明天就忘了。再加上非人非常地依賴滑鼠,所以總是記不了幾個 keybindings。而 ErgoEmacs 這個專案主要就是在改變 keybindings,讓 Emacs 更能符合現代使用電腦的習慣。這個套件可以從這裡下載。
</p>
<p>
jeangjs.blogspot.com 非人的筆記本
</p>
</blockquote>
<p>
<a href="http://jeangjs.blogspot.com/2009/11/ergoemacs.html">Source</a>
</p></div>
</div>
<div id="outline-container-10" class="outline-3">
<h3 id="sec-10">Chow at Stack Overflow – 2010-06-04</h3>
<div class="outline-text-3" id="text-10">
<blockquote>
<p>I totally agree with the remap caps-lock solution, that helps quite a
bit. To go even further, I tried and liked the Ergoemacs
keybindings. The project is being actively developed, and supported
quite well. I personally don't use it because it's not integrated with
Mac OS X (some EMACS Keys are integrated in Cocoa), though it seems
someone has posted an inputrc file with Ergoemacs keybindings. Another
trick I've been playing with is enabling StickyKeys. It's supported on
many platforms and alleviates some of the problems specific to
chording (as opposed to just overuse): it is apparently recommended on
the emacswiki: <a href="http://www.emacswiki.org/emacs/StickyModifiers">http://www.emacswiki.org/emacs/StickyModifiers</a>
</p>
</blockquote>
<p>
<a href="http://stackoverflow.com/questions/52492/what-is-the-best-way-to-avoid-getting-emacs-pinky/2976688#2976688">Source</a>
</p></div>
</div>
<div id="outline-container-11" class="outline-3">
<h3 id="sec-11">jroes – 2010-05-24</h3>
<div class="outline-text-3" id="text-11">
<blockquote>
<p>I used to do the same thing, but I missed out on a lot
of good emacs shortcuts. Today I use the dvorak version of Xah Lee's
layout. You get vim-like navigation by holding Meta.
</p>
</blockquote>
<p>
— <a href="https://news.ycombinator.com/item?id=1374916">jroes Source news.ycombinator.com</a>
</p>
</div>
</div>
<div id="outline-container-12" class="outline-3">
<h3 id="sec-12">laurus – 2009-08-19</h3>
<div class="outline-text-3" id="text-12">
<blockquote>
<p>(9:06:35 AM) laurus: Hello! I just wanted to let you know that I
recently installed your Ergoemacs and I'm enjoying it very much.
</p>
</blockquote>
</div>
</div>
<div id="outline-container-13" class="outline-3">
<h3 id="sec-13">fadec – 2009-08-05</h3>
<div class="outline-text-3" id="text-13">
<blockquote>
<p>fadec: I had customized my keybindings but someone
suggested I try Ergoemacs a few weeks ago. Forget vim - ergoemacs is
how it's done.
</p>
</blockquote>
<p>
<a href="http://www.reddit.com/r/programming/comments/957rp/vimacs_vim_emulating_emacs/">reddit.com</a>
</p>
</div>
</div>
<div id="outline-container-14" class="outline-3">
<h3 id="sec-14">Ghoul – 2009-01-26</h3>
<div class="outline-text-3" id="text-14">
<p>freenode irc chat:
</p>
<blockquote>
<p>Ghoul``: xah<sub>lee</sub>: i appreciate the ergonomic emacs shortcuts
especially M-x being M-a right now ☺ however only one thing is
weird.. the M-; for searching (M-s in dvorak) but if i want to go to
the next entry i press C-s and not M-; again; that's like the only
tiny thing; otherwise i really like and use all the other shortcuts;
really good stuff!
</p>
</blockquote>
</div>
</div>
<div id="outline-container-15" class="outline-3">
<h3 id="sec-15">ginstre –2009-01-25</h3>
<div class="outline-text-3" id="text-15">
<p>freenode irc chat:
</p>
<blockquote>
<p>ginstre: i'm an avid user of your ergonomic keybindings. one small
suggestion: the isearch-mode-map bindings should be copied to the
minibuffer-local-isearch-map. otherwise one can't resume an isearch
that has been modified (⁖ by M-n, M-p or isearch-edit-string).
</p>
</blockquote>
</div>
</div>
<div id="outline-container-16" class="outline-3">
<h3 id="sec-16">w k – 2008-12-27</h3>
<div class="outline-text-3" id="text-16">
<p>From w k
</p>
<blockquote>
<p>你好,偶然访问李杀网,从你的网站发现非常有价值的emacs教程。尤其关于人体工程力学的键位设置及键盘推荐,更是出类拔萃,对于像我这样的emacs新手具有非常大的帮助,我已经完全按照你的建议来做。
</p>
<p>
教程需然全部都是英文书写,但是语法简单、文笔流畅,像我这样纯粹的中国人都可以轻松阅读。
</p>
</blockquote>
</div>
</div>
<div id="outline-container-17" class="outline-3">
<h3 id="sec-17">Will Parsons – 2008-09-03</h3>
<div class="outline-text-3" id="text-17">
<blockquote>
<p>From: Will Parsons
Date: 3 Sep 2008 00:21:16 GMT
Subject: Re: ergonomic keybinding. Need qwerty testers.
</p>
<p>
Some comments:
</p>
<p>
I've been giving your keyboard mapping a try and generally like it. In
particular, I like the cut/paste series (M-x, M-c, M-v) and the
window-splitting series (M-0, M-1, M-2). I do regret, however, that
the M-c binding does conflict with the default capitalize-word
binding, as I use the capitalization functions bound by default to
M-c, M-u, and M-l pretty frequently. At the moment, I've configured a
"windows" key to be Hyper and bound the capitalization functions to
H-c, H-u, and H-l, so I'll see how that works out.
</p>
<p>
(I've noticed a slight anomaly - since M-x is bound to kill-region,
M-a is used for execute-extended-command, but when one hits M-a, one
is still presented with a prompt "M-x ".)
</p>
<p>
As far as the cursor movement bindings, the single character movement
bindings seem natural enough, but I suspect I'll prefer to continue to
use arrow keys. I'll have to give the other movement bindings more of
trial before making a final judgement, though the combinations
involving M+S (Alt+Shift) seem a little awkward to me.
</p>
<p>
I've bound M-g to goto-line for some time now, and am happy with the
standard C-k for kill-line, so prefer not to rebind M-g.
</p>
<p>
Similarly, I've bound M-p to ps-print-buffer, and since I don't use
the recenter function too often, am happy to stick with C-l for it.
</p>
<p>
I found the binding of M-d to delete-backward-char somewhat
disconcerting, because even though I've bound C-delete to kill-word,
I'm still acustomed to having M-d perform the same function in other
contexts (⁖, in Bash).
</p>
</blockquote>
<p>
From <a href="https://groups.google.com/forum/#!topic/gnu.emacs.help/E2mxoz1EPeg">gnu.emacs.help</a> newsgroup.
</p>
</div>
</div>
<div id="outline-container-18" class="outline-3">
<h3 id="sec-18">Jerome Alet – 2008-08-29</h3>
<div class="outline-text-3" id="text-18">
<blockquote>
<p>Hello,
</p>
<p>
I've just read your rant about Emacs key bindings and other historical "features".
</p>
<p>
I simply wanted to thank you for this : now I know I'm not alone thinking about this sort of things. Although I didn't had your historical knowledge about Emacs, these key bindings and features are what has always turned me away from Emacs, and why I coded my own text editor 14 years ago (Jered, available from <a href="http://www.librelogiciel.com/">http://www.librelogiciel.com/</a> )
</p>
<p>
So, again : THANKS A LOT !
</p>
<p>
bye
</p>
<p>
Jerome Alet
</p>
</blockquote>
</div>
</div>
<div id="outline-container-19" class="outline-3">
<h3 id="sec-19">Markus Grunwald – 2008-07-28</h3>
<div class="outline-text-3" id="text-19">
<blockquote>
<p>a few weeks ago I saw your page with ergonomic keybindings for
emacs. Since I did not like the original bindings very much and was on
the way to an "emacs pinky" I tried your keybindings - they are great
☺
</p>
<p>
Pain decays slowly and the new bindings are going into muscle memory
quickly. Of cource, I made a few changes according to my special
needs.
</p>
<p>
Thank you VERY much!
</p>
<p>
Markus Grunwald
</p>
</blockquote>
</div>
</div>
<div id="outline-container-20" class="outline-3">
<h3 id="sec-20">boskom –2008-05-02</h3>
<div class="outline-text-3" id="text-20">
<blockquote>
<p>
I have used your ergonomic<sub>keybinding</sub><sub>querty</sub>.el a bit. It is
interesting, it looks like it is the right way to go. Solution is
elegant and does not interfere with or disable common shortcuts. There
are two small issues I encountered: The first is that if CUA is
enabled in emacs 22 moving around with page up/down (M-Shift-i and M-
Shift-k) sets mark and starts selecting a region. The other issue is
that on Windows pressing righ-alt + right-shift sometimes changes
Windows keyboard layout.
</p>
<p>
The main issue for me still remains position of Control keys, but this
needs to be addressed by a keyboard manufacturer.
</p>
<p>
Thanks,
</p>
<p>
boskom
</p>
</blockquote>
<p>
<a href="https://groups.google.com/forum/#!topic/gnu.emacs.help/E2mxoz1EPeg">gnu.emacs.help</a> newsgroup, 2008-04-30.
</p>
</div>
</div>
<div id="outline-container-21" class="outline-3">
<h3 id="sec-21">2008-05-02</h3>
<div class="outline-text-3" id="text-21">
<blockquote>
<p>Pretty impressive.
</p>
<p>
Do you have the frequency of the C-x prefix ? I use it pretty often,
just wondering what's his rating. I definitively want to try your
layout. Two remarks though. C-h = delete-backward-char is mandatory
for me.
</p>
<p>
Too many applications use it that way. And the h key is a perfect spot
on the Dvorak keyboard.
</p>
<p>
Also, C-t, M-t and M-c on a Dvorak keyboard definitely deserve better
shortcuts than the default ones.
</p>
<p>
I am currently using C-t as the C-x prefix and M-t as M-x.
</p>
</blockquote>
</div>
</div>
<div id="outline-container-22" class="outline-3">
<h3 id="sec-22">Sergio – 2007-09-12</h3>
<div class="outline-text-3" id="text-22">
<blockquote>
<p>Sergio // Sep 12, 2007 at 12:06 pm
</p>
<p>
That's nice, but the best thing about that website is the ‘ergonomic
keybord layout’ that uses completely new bindings that are way more
comfortable.
</p>
<p>
I know that for long-time emacs users a new layout is perhaps not
something attractive, but for me, being new to emacs, a more modern
and ergonomic layout is just what I needed to get up to speed.
</p>
<p>
They even have a Dvorak version. Great resource, thanks, I had been
looking for this kind of info about how to make it easier to use emacs
for a while.
</p>
</blockquote>
<p>
<a href="http://emacsblog.org/2007/08/27/newbie-tip-visual-emacs-keybinding-cheatsheet/#comments">emacsblog.org</a>
</p>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'ergoemacsmode'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div>
</div>
</article>
</div>
<div id="footer">
<div class="container">
<div class="row">
<nav class="span3">
<h1>About</h1>
<p>
This page explains how ergoemacs-mode works. It was written in emacs
org-mode and exported to HTML using <a href="https://github.com/renard/o-blog">o-blog</a>.
</p>
</nav>
<nav id="links" class="span3">
<h1>Links</h1>
<ul>
<ul>
<li><a href="./index.html"><i>icon-home icon-white</i> Home</a>
</li>
</ul>
<ul>
<li><a href="./testimonials.html"><i>icon-comments-alt icon-white</i> Testimonials</a>
</li>
<li><a href="./changelog.html"><i>icon-pencil icon-white</i> Changelog</a>
</li>
<li><a href="./roadmap.html"><i>icon-tasks icon-white</i> Roadmap</a>
</li>
</ul>
</ul>
</nav>
<nav id="archives" class="span3">
<h1><a href="./archives.html">Archives</a></h1>
<ul>
</ul>
</nav>
<nav class="tags span3">
<h1><a href="./tags/index.html">Tags</a></h1>
<ul>
</ul>
</nav>
</div>
</div>
<div class="copyright" style="text-align: center;">
<p>
Documentation Copyright © 2007-2013 Matthew Fidler, Xah Lee and David
Capello. Published under the therm of the <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/fr/">Creative Commons Attribution-Noncommercial-Share Alike 2.0 France License</a>. Code
published under <a href="http://www.gnu.org/licenses/gpl-2.0.html">GPL v2</a>.
</p>
<p>Powered by <a href="https://github.com/renard/o-blog">o-blog</a>.</p>
</div>
</div>
</body>
</html>