Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Text Editors - Frontend Summit '14
Search
Adam Simpson
August 21, 2014
Programming
2
120
Text Editors - Frontend Summit '14
Slides for my talk at Frontend Summit 2014 on Text Editors.
Adam Simpson
August 21, 2014
Tweet
Share
More Decks by Adam Simpson
See All by Adam Simpson
Build your own tools with Electron and React
asimpson
1
180
Intro to Frontend Tooling - Gem City JS
asimpson
0
640
Intro To Frontend Tooling - Codemash '14
asimpson
2
400
.dotfiles
asimpson
2
130
Other Decks in Programming
See All in Programming
エンジニア向け採用ピッチ資料
inusan
0
160
Gleamという選択肢
comamoca
6
760
XSLTで作るBrainfuck処理系
makki_d
0
210
VS Code Update for GitHub Copilot
74th
1
300
ASP.NETアプリケーションのモダナイズ インフラ編
tomokusaba
1
410
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
1
110
PostgreSQLのRow Level SecurityをPHPのORMで扱う Eloquent vs Doctrine #phpcon #track2
77web
2
290
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
470
Azure AI Foundryではじめてのマルチエージェントワークフロー
seosoft
0
120
来たるべき 8.0 に備えて React 19 新機能と React Router 固有機能の取捨選択とすり合わせを考える
oukayuka
2
840
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
190
Webからモバイルへ Vue.js × Capacitor 活用事例
naokihaba
0
760
Featured
See All Featured
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Git: the NoSQL Database
bkeepers
PRO
430
65k
For a Future-Friendly Web
brad_frost
179
9.8k
Designing Experiences People Love
moore
142
24k
Designing for Performance
lara
609
69k
How to Think Like a Performance Engineer
csswizardry
24
1.7k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.8k
Gamification - CAS2011
davidbonilla
81
5.3k
GitHub's CSS Performance
jonrohan
1031
460k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Building a Modern Day E-commerce SEO Strategy
aleyda
41
7.3k
Transcript
:new
seesparkbox.com
@a_simpson
None
WHY CAN’T WE ALL JUST GET ALONG?
http://xkcd.com/378/
Do Editors Matter? ‣ 90% of editor arguments are lighthearted
‣ Your editor preference barely effects the rest of your team ‣ Fighting over editors is almost useless. There are better battles to fight.
“The truth is that text editors don’t matter. Code however
you want to code, be it TextMate, Sublime Text 2, Notepad++, Vim, Emacs, or even Butterflies. Just code.” http://zackfern.me/2013/switching-to-vim/
WRONG
WRONG kinda
You spend almost all of your time in your editor.
Your editor preference changes the way you think.
Context shapes perspective http://randsinrepose.com/
TEXT EDITORS A few signs you need a better editor:
1. Your editor is writing code for you
TEXT EDITORS A few signs you need a better editor:
2. You’re doing lots of clicking
TEXT EDITORS A few signs you need a better editor:
3. You’re repeating yourself—a lot!
TEXT EDITORS A few signs you need a better editor:
4. You’ve hit a ceiling, and you can’t go higher.
THE CASE FOR THE PLAIN TEXT EDITOR
Technically, all you need to code is an app that
will accept text:
Writing all your code in TextEdit.app would be pretty painful,
though! ‣ Lots of (unneeded) typing! ‣ No project tree ‣ No syntax highlighting ‣ Sad and depressed
IDE? Integrated Development Environment
This is the part you actually need
Choosing a great text editor removes abstraction between your brain
and your code.
IDE’s ‣Slow development time ‣Messy code ‣Unskillful developers
“Dreamweaver was attempting to be helpful, but the moment it
reformatted my code, I threw a fit. YOU TOUCHED MY CODE. Dreamweaver never recovered from that horrendous first impression.” http://randsinrepose.com/
Enter the simple, powerful text editor
Here’s what to look for: ‣ are you comfortable in
it? ‣ can it do what you need? ‣ is it writing code for you?
THE CURRENT STATE OF EDITORS
Editors on the market: ‣ Sublime Text ‣ Vim ‣
TextMate ‣ BBedit ‣ Coda ‣ Emacs ‣ Espresso ‣ Atom
Editors you should actually consider: ‣ Sublime Text ‣ Vim
Seriously, you guys. Vim Sublime Text sublimetext.com vim.org
You can keep pulling back the layers and finding new
functionality, which is going to make your development experience faster http://randsinrepose.com/
None
“I don’t think of BBedit as a commitment. It simply
continues to be the best choice.” —bit.ly/editor-rage
Why Sublime? ‣low barrier of entry
Why Sublime? ‣highly extensible
Why Sublime? ‣highly extensible sublime.wbond.net/installation
A few essential Sublime packages: Many more: sublime.wbond.net/ ‣ SideBarEnhancements
‣ AdvancedNewFile ‣ Emmet
Why Sublime? ‣killer features Go to Anything: ⌘+P
Why Sublime? ‣killer features Command Palette: ⌘+Shift+P
Why Sublime? ‣ recent rise in popularity ‣ compared to
Coda or Espresso, it’s fast & close to the code ‣ Vintage mode for Vim key bindings ‣ hint: you should use Sublime
http://delvarworld.github.io/blog/2013/03/16/ just-use-sublime-text/
Why Vim?
Why Vim? ‣ fast ‣ mouseless! ‣ dot command, macros,
commands by line ‣ configurable (vimrc, vundle) ‣ super old ‣http://www.rayninfo.co.uk/ vimtips.html
Why Vim? ‣ high skill ceiling ‣ popular (vimbits.com) ‣
Runs in a terminal ‣ everywhere (any platform, ssh, other people’s machines) ‣ fun, in a weird way
=
Vim Resources ‣ http://vimcasts.org ‣ http://www.vimbits.com ‣ http://vimawesome.com ‣ http://github.com/mutewinter/
dot_vim ‣ http://vim.wikia.com/wiki/ Vim_Tips_Wiki ‣:help
Runners-up panic.com/coda/ https://atom.io
THE RABID CASH MACHINE
TEXT EDITORS MATTER. GET FOAMY.
Editor Cults ‣ Get cultic about your editor ‣ As
you're making your case, you'll have to nerd out on your editor. ‣ This is where real learning happens!
Seething, rabid coding machine
There’s only one thing more important than your editor. The
code it helps you write.
While you're nerding out on your editor, your coworkers are
raking in cash for the boss.
$ $
:wq!