Code Monkey home page Code Monkey logo

atom's Introduction

Atom

Build status

Atom and all repositories under Atom will be archived on December 15, 2022. Learn more in our official announcement

Atom is a hackable text editor for the 21st century, built on Electron, and based on everything we love about our favorite editors. We designed it to be deeply customizable, but still approachable using the default configuration.

Atom

Atom Screenshot

Visit atom.io to learn more or visit the Atom forum.

Follow @AtomEditor on Twitter for important announcements.

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].

Documentation

If you want to read about using Atom or developing packages in Atom, the Atom Flight Manual is free and available online. You can find the source to the manual in atom/flight-manual.atom.io.

The API reference for developing packages is also documented on Atom.io.

Installing

Prerequisites

macOS

Download the latest Atom release.

Atom will automatically update when a new release is available.

Windows

Download the latest Atom installer. AtomSetup.exe is 32-bit. For 64-bit systems, download AtomSetup-x64.exe.

Atom will automatically update when a new release is available.

You can also download atom-windows.zip (32-bit) or atom-x64-windows.zip (64-bit) from the releases page. The .zip version will not automatically update.

Using Chocolatey? Run cinst Atom to install the latest version of Atom.

Linux

Atom is only available for 64-bit Linux systems.

Configure your distribution's package manager to install and update Atom by following the Linux installation instructions in the Flight Manual. You will also find instructions on how to install Atom's official Linux packages without using a package repository, though you will not get automatic updates after installing Atom this way.

Archive extraction

An archive is available for people who don't want to install atom as root.

This version enables you to install multiple Atom versions in parallel. It has been built on Ubuntu 64-bit, but should be compatible with other Linux distributions.

  1. Install dependencies (on Ubuntu):
sudo apt install git libasound2 libcurl4 libgbm1 libgcrypt20 libgtk-3-0 libnotify4 libnss3 libglib2.0-bin xdg-utils libx11-xcb1 libxcb-dri3-0 libxss1 libxtst6 libxkbfile1
  1. Download atom-amd64.tar.gz from the Atom releases page.
  2. Run tar xf atom-amd64.tar.gz in the directory where you want to extract the Atom folder.
  3. Launch Atom using the installed atom command from the newly extracted directory.

The Linux version does not currently automatically update so you will need to repeat these steps to upgrade to future releases.

Building

Discussion

License

MIT

When using the Atom or other GitHub logos, be sure to follow the GitHub logo guidelines.

atom's People

Contributors

50wliu avatar as-cii avatar benogle avatar binarymuse avatar damieng avatar darangi avatar daviwil avatar defunkt avatar gjtorikian avatar izuzak avatar jasonrudolph avatar jonrohan avatar joshaber avatar kevinnathan avatar kevinsawicki avatar kuychaco avatar lee-dohm avatar lkashef avatar maxbrunsfeld avatar mnquintana avatar okbel avatar probablycorey-and-nathan avatar probablykevin avatar rafeca avatar sadick254 avatar simurai avatar smashwilson avatar thedaniel avatar thomasjo avatar zcbenz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

atom's Issues

Regexp escaping not working?

def render_event(event, type = :basic)
  return unless event
  inner = event.html
  inner = inner.gsub(/<div class="gravatar">.+?<\/div>/, '') if type == :simple
  inner = inner.html_safe
  inner = content_tag(:div, inner, :class => 'body')
  css_class = "alert #{event.icon}"
  css_class += " simple" if event.simple?
  content_tag(:div, inner, :class => css_class)
rescue
  handle_event_error($!, event)
  nil
end

meta+F should close file finder

meta+t opens and closes the fuzzy finder, but meta+F only opens the file finder. It'd be awesome if it would also close the file finder because I can't remember how to close it.

README doesn't mention CoffeeScript dependency

I just tried cloning and building Atom and my build is failing because I don't have CoffeeScript installed. The README should probably mention this. (Maybe we could even have a script that would install it for you.)

cursor appears on next line when selecting by line

When selecting by line (hold shift, down, down, down), the cursor appears on the line following the last selected line.

Textmate, and OS X text selection both actually hide the cursor when doing this.

Triple click selects line of text not full line including a line break

What I did

Triple clicked a line

What happened

<%= image_tag(@episode.poster_iphone_url, :class => 'img-polaroid') %>

This line was higlighted to the exact end of it. Not the whole line.

What I expected

The entire line, including a line break, to be highlighted.

Why it sucks

When you copy and paste the selection that is currently happening, it keeps the line you paste it on, there. With the expected behavior, you, the line you paste it on ends up below it.

Current end result

<h5><%= @episode.title %></h5>          <h5><%= @episode.description %></h5>

Expected end result

<h5><%= @episode.title %></h5>
<h5><%= @episode.description %></h5>

Let me know if this is confusing :/

No visualization/audioization when trying to command-g and there isn't another result

What I did

used command-f to find something. Then hit command-g to go to the next result. There is no other result though.

What happened

Nothing.

What I expected

An audible sound, or something, to let me know "yo dawg, I know you want to go to the next result, but there IS no other results."

Instead, it appears that its just not working or nothing is happening.

Validator

HTML, JS, Ruby validation (with onscreen visualization.)

Default to non-regexp search?

I tend to search for terms including ( and . far more often than I want to use regexps in searches, e.g. method( or .method(.

What do you guys think about having cmd+f default to a literal search and having some other way to launch a regexp search?

command+w too many times leads to blank window bug

How to reproduce:

  1. cd MY_PROJECT
  2. atom .
  3. In Atom cmd+w until the tree view closes (seems like this could be a bug too)
  4. Close atom
  5. atom .

You're left with a blank window, but you should see a tree view populated with the files from the directory you opened.

Ctrl+A on a blank line asplodes

Atom downloaded from Speakeasy. I'll close this if it doesn't happen on a build from source. I was dinking around and hit Ctrl+A to go to the beginning of a line, but the line was blank. The developer tools popped up with:

Uncaught TypeError: Cannot call method 'isEqual' of null
module.exports.Cursor.moveToFirstCharacterOfLine/Applications/Atom.app/Contents/Resources/src/atom/cursor.js:240
module.exports.CompositeCursor.moveToFirstCharacterOfLine/Applications/Atom.app/Contents/Resources/src/atom/composite-cursor.js:147
module.exports.CompositeCursor.modifyCursors/Applications/Atom.app/Contents/Resources/src/atom/composite-cursor.js:74
module.exports.CompositeCursor.moveToFirstCharacterOfLine/Applications/Atom.app/Contents/Resources/src/atom/composite-cursor.js:146
module.exports.Editor.moveCursorToFirstCharacterOfLine/Applications/Atom.app/Contents/Resources/src/atom/editor.js:633
module.exports.Editor.bindKeys/Applications/Atom.app/Contents/Resources/src/atom/editor.js:209
jQuery.event.dispatch/Applications/Atom.app/Contents/Resources/vendor/jquery.js:3256
jQuery.event.add.elemData.handle.eventHandle/Applications/Atom.app/Contents/Resources/vendor/jquery.js:2875
jQuery.event.trigger/Applications/Atom.app/Contents/Resources/vendor/jquery.js:3144
jQuery.fn.extend.trigger/Applications/Atom.app/Contents/Resources/vendor/jquery.js:3781
jQuery.extend.each/Applications/Atom.app/Contents/Resources/vendor/jquery.js:658
jQuery.fn.jQuery.each/Applications/Atom.app/Contents/Resources/vendor/jquery.js:271
jQuery.fn.extend.trigger/Applications/Atom.app/Contents/Resources/vendor/jquery.js:3780
module.exports.Keymap.triggerCommandEvent/Applications/Atom.app/Contents/Resources/src/atom/keymap.js:90
module.exports.Keymap.handleKeyEvent/Applications/Atom.app/Contents/Resources/src/atom/keymap.js:71
windowAdditions.setUpKeymap._handleKeyEvent/Applications/Atom.app/Contents/Resources/src/atom/window.js:26
jQuery.event.dispatch/Applications/Atom.app/Contents/Resources/vendor/jquery.js:3256
jQuery.event.add.elemData.handle.eventHandle/Applications/Atom.app/Contents/Resources/vendor/jquery.js:2875

Ability to close splits independent of closing buffers

I talked with @nathansobo a bit about this in Kona. Basically, one of Emacs' best features is it doesn't couple splits to buffers, which makes opening and closing splits really powerful.

What I'm proposing is:

  • Decouple buffers from splits on the backend
  • Maintain the current Cmd-W behavior (that closes buffers and then eventually a pane)

This way the crazy Emacs-loving types like myself don't get frustrated with the splits, but the ST2-style behavior can remain default for everybody else.

Here's basically what I'm proposing to be able to do, in slightly Emacs-ish terms:

window.keymap.bindKeys '*',
  'ctrl-x 0': 'editor:close-current-split-unless-last-split'

window.keymap.bindKeys '*',
  'ctrl-x 1': 'editor:close-all-splits-except-selected-split'

window.keymap.bindKeys '*',
  'ctrl-x 2': 'editor:split-down'

window.keymap.bindKeys '*',
  'ctrl-x 3': 'editor:split-right'

window.keymap.bindKeys '*',
  'ctrl-x 5 2': 'core:open-new-editor-for-selected-project'

window.keymap.bindKeys '*',
  'ctrl-x 5 0': 'core:destroy-editor-unless-last-window'

Crasher

Process:         Atom [25464]
Path:            /Applications/Atom.app/Contents/MacOS/Atom
Identifier:      com.github.atom
Version:         1.0
Code Type:       X86 (Native)
Parent Process:  launchd [264]
User ID:         501

Date/Time:       2012-10-19 11:59:20.843 -0400
OS Version:      Mac OS X 10.8.2 (12C60)
Report Version:  10

Interval Since Last Report:          90741 sec
Crashes Since Last Report:           5
Per-App Crashes Since Last Report:   2
Anonymous UUID:                      813E0F69-8507-496A-F10E-06A2443CDBA7

Crashed Thread:  0  CrBrowserMain  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000047e2b60b

VM Regions Near 0x47e2b60b:
    mapped file            000000000d357000-000000000d57a000 [ 2188K] rw-/rwx SM=ALI  /private/var/folders/*/*.iAkfpN
--> 
    MALLOC_TINY            000000007b600000-000000007b700000 [ 1024K] rw-/rwx SM=PRV  

Application Specific Information:
objc_msgSend() selector name: release


Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
0   libobjc.A.dylib                 0x9179ca87 objc_msgSend + 23
1   com.github.atom                 0x000a40ac -[AtomWindowController dealloc] + 188 (atom_window_controller.mm:19)
2   libobjc.A.dylib                 0x917b58ff -[NSObject release] + 47
3   com.apple.AppKit                0x975c665e -[NSWindowController release] + 153
4   libobjc.A.dylib                 0x9179f442 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 490
5   com.apple.CoreFoundation        0x95124083 _CFAutoreleasePoolPop + 51
6   com.apple.Foundation            0x91c8c23d -[NSAutoreleasePool drain] + 122
7   com.apple.AppKit                0x9751f78a -[NSApplication run] + 1045
8   libcef.dylib                    0x005ed367 0x243000 + 3842919
9   libcef.dylib                    0x005ece3c 0x243000 + 3841596
10  libcef.dylib                    0x0061d161 0x243000 + 4039009
11  libcef.dylib                    0x00633f4e 0x243000 + 4132686
12  libcef.dylib                    0x0061c89a 0x243000 + 4036762
13  libcef.dylib                    0x00b40f8f 0x243000 + 9428879
14  com.github.atom                 0x000b1bbb CefRunMessageLoop() + 11 (libcef_dll_wrapper.cc:227)
15  com.github.atom                 0x000a0dd4 main + 356 (main_mac.mm:24)
16  libdyld.dylib                   0x9a396725 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x968719ae kevent + 10
1   libdispatch.dylib               0x9001bc71 _dispatch_mgr_invoke + 993
2   libdispatch.dylib               0x9001b7a9 _dispatch_mgr_thread + 53

Thread 2:: Dispatch queue: com.apple.root.default-priority
0   libsystem_kernel.dylib          0x96870b3e __recvfrom + 10
1   com.github.atom                 0x000a1672 __listenForPathToOpen_block_invoke_0 + 242 (main_mac.mm:78)
2   libdispatch.dylib               0x9001cf8f _dispatch_call_block_and_release + 15
3   libdispatch.dylib               0x90019f02 _dispatch_worker_thread2 + 285
4   libsystem_c.dylib               0x994aae12 _pthread_wqthread + 441
5   libsystem_c.dylib               0x99492cca start_wqthread + 30

Thread 3:: NetworkConfigWatcher
0   libsystem_kernel.dylib          0x9686e7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x9686dcb0 mach_msg + 68
2   com.apple.CoreFoundation        0x95123599 __CFRunLoopServiceMachPort + 185
3   com.apple.CoreFoundation        0x95128f7f __CFRunLoopRun + 1247
4   com.apple.CoreFoundation        0x9512863a CFRunLoopRunSpecific + 378
5   com.apple.CoreFoundation        0x951284ab CFRunLoopRunInMode + 123
6   com.apple.Foundation            0x91cd0946 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
7   libcef.dylib                    0x005ed16f 0x243000 + 3842415
8   libcef.dylib                    0x005ece3c 0x243000 + 3841596
9   libcef.dylib                    0x0061d161 0x243000 + 4039009
10  libcef.dylib                    0x00633f4e 0x243000 + 4132686
11  libcef.dylib                    0x0061c89a 0x243000 + 4036762
12  libcef.dylib                    0x00649901 0x243000 + 4221185
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 4:: DnsWatcher
0   libsystem_kernel.dylib          0x968719ae kevent + 10
1   libcef.dylib                    0x00bb6ecc 0x243000 + 9912012
2   libcef.dylib                    0x00bb4be9 0x243000 + 9903081
3   libcef.dylib                    0x005ebf11 0x243000 + 3837713
4   libcef.dylib                    0x0061d161 0x243000 + 4039009
5   libcef.dylib                    0x00633f4e 0x243000 + 4132686
6   libcef.dylib                    0x0061c89a 0x243000 + 4036762
7   libcef.dylib                    0x00649901 0x243000 + 4221185
8   libcef.dylib                    0x0064998c 0x243000 + 4221324
9   libcef.dylib                    0x00645329 0x243000 + 4203305
10  libsystem_c.dylib               0x994a8557 _pthread_start + 344
11  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 5:: AudioThread
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x0063e75b 0x243000 + 4175707
5   libcef.dylib                    0x0063e5c2 0x243000 + 4175298
6   libcef.dylib                    0x0062119b 0x243000 + 4055451
7   libcef.dylib                    0x0061d161 0x243000 + 4039009
8   libcef.dylib                    0x00633f4e 0x243000 + 4132686
9   libcef.dylib                    0x0061c89a 0x243000 + 4036762
10  libcef.dylib                    0x00649901 0x243000 + 4221185
11  libcef.dylib                    0x0064998c 0x243000 + 4221324
12  libcef.dylib                    0x00645329 0x243000 + 4203305
13  libsystem_c.dylib               0x994a8557 _pthread_start + 344
14  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 6:: Chrome_DBThread
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x0063e75b 0x243000 + 4175707
5   libcef.dylib                    0x0063e5c2 0x243000 + 4175298
6   libcef.dylib                    0x0062119b 0x243000 + 4055451
7   libcef.dylib                    0x0061d161 0x243000 + 4039009
8   libcef.dylib                    0x00633f4e 0x243000 + 4132686
9   libcef.dylib                    0x0061c89a 0x243000 + 4036762
10  libcef.dylib                    0x00649901 0x243000 + 4221185
11  libcef.dylib                    0x002a1109 0x243000 + 385289
12  libcef.dylib                    0x002a1571 0x243000 + 386417
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 7:: Chrome_WebKitThread
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x0063e75b 0x243000 + 4175707
5   libcef.dylib                    0x0063e5c2 0x243000 + 4175298
6   libcef.dylib                    0x0062119b 0x243000 + 4055451
7   libcef.dylib                    0x0061d161 0x243000 + 4039009
8   libcef.dylib                    0x00633f4e 0x243000 + 4132686
9   libcef.dylib                    0x0061c89a 0x243000 + 4036762
10  libcef.dylib                    0x00649901 0x243000 + 4221185
11  libcef.dylib                    0x002a1199 0x243000 + 385433
12  libcef.dylib                    0x002a157f 0x243000 + 386431
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 8:: Chrome_FileThread
0   libsystem_kernel.dylib          0x968719ae kevent + 10
1   libcef.dylib                    0x00bb6ecc 0x243000 + 9912012
2   libcef.dylib                    0x00bb4be9 0x243000 + 9903081
3   libcef.dylib                    0x005ebf11 0x243000 + 3837713
4   libcef.dylib                    0x0061d161 0x243000 + 4039009
5   libcef.dylib                    0x00633f4e 0x243000 + 4132686
6   libcef.dylib                    0x0061c89a 0x243000 + 4036762
7   libcef.dylib                    0x00649901 0x243000 + 4221185
8   libcef.dylib                    0x002a1229 0x243000 + 385577
9   libcef.dylib                    0x002a158d 0x243000 + 386445
10  libcef.dylib                    0x0064998c 0x243000 + 4221324
11  libcef.dylib                    0x00645329 0x243000 + 4203305
12  libsystem_c.dylib               0x994a8557 _pthread_start + 344
13  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 9:: Chrome_FileUserBlockingThread
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x0063e75b 0x243000 + 4175707
5   libcef.dylib                    0x0063e5c2 0x243000 + 4175298
6   libcef.dylib                    0x0062119b 0x243000 + 4055451
7   libcef.dylib                    0x0061d161 0x243000 + 4039009
8   libcef.dylib                    0x00633f4e 0x243000 + 4132686
9   libcef.dylib                    0x0061c89a 0x243000 + 4036762
10  libcef.dylib                    0x00649901 0x243000 + 4221185
11  libcef.dylib                    0x002a12b9 0x243000 + 385721
12  libcef.dylib                    0x002a159b 0x243000 + 386459
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 10:: Chrome_ProcessLauncherThread
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x0063e75b 0x243000 + 4175707
5   libcef.dylib                    0x0063e5c2 0x243000 + 4175298
6   libcef.dylib                    0x0062119b 0x243000 + 4055451
7   libcef.dylib                    0x0061d161 0x243000 + 4039009
8   libcef.dylib                    0x00633f4e 0x243000 + 4132686
9   libcef.dylib                    0x0061c89a 0x243000 + 4036762
10  libcef.dylib                    0x00649901 0x243000 + 4221185
11  libcef.dylib                    0x002a1349 0x243000 + 385865
12  libcef.dylib                    0x002a15a9 0x243000 + 386473
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 11:: Chrome_CacheThread
0   libsystem_kernel.dylib          0x968719ae kevent + 10
1   libcef.dylib                    0x00bb6ecc 0x243000 + 9912012
2   libcef.dylib                    0x00bb4be9 0x243000 + 9903081
3   libcef.dylib                    0x005ebf11 0x243000 + 3837713
4   libcef.dylib                    0x0061d161 0x243000 + 4039009
5   libcef.dylib                    0x00633f4e 0x243000 + 4132686
6   libcef.dylib                    0x0061c89a 0x243000 + 4036762
7   libcef.dylib                    0x00649901 0x243000 + 4221185
8   libcef.dylib                    0x002a13d9 0x243000 + 386009
9   libcef.dylib                    0x002a15b7 0x243000 + 386487
10  libcef.dylib                    0x0064998c 0x243000 + 4221324
11  libcef.dylib                    0x00645329 0x243000 + 4203305
12  libsystem_c.dylib               0x994a8557 _pthread_start + 344
13  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 12:: Chrome_IOThread
0   libsystem_kernel.dylib          0x968719ae kevent + 10
1   libcef.dylib                    0x00bb6ecc 0x243000 + 9912012
2   libcef.dylib                    0x00bb4be9 0x243000 + 9903081
3   libcef.dylib                    0x005ebff3 0x243000 + 3837939
4   libcef.dylib                    0x0061d161 0x243000 + 4039009
5   libcef.dylib                    0x00633f4e 0x243000 + 4132686
6   libcef.dylib                    0x0061c89a 0x243000 + 4036762
7   libcef.dylib                    0x00649901 0x243000 + 4221185
8   libcef.dylib                    0x002a1469 0x243000 + 386153
9   libcef.dylib                    0x002a15c5 0x243000 + 386501
10  libcef.dylib                    0x0064998c 0x243000 + 4221324
11  libcef.dylib                    0x00645329 0x243000 + 4203305
12  libsystem_c.dylib               0x994a8557 _pthread_start + 344
13  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 13:: NetworkConfigWatcher
0   libsystem_kernel.dylib          0x9686e7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x9686dcb0 mach_msg + 68
2   com.apple.CoreFoundation        0x95123599 __CFRunLoopServiceMachPort + 185
3   com.apple.CoreFoundation        0x95128f7f __CFRunLoopRun + 1247
4   com.apple.CoreFoundation        0x9512863a CFRunLoopRunSpecific + 378
5   com.apple.CoreFoundation        0x951284ab CFRunLoopRunInMode + 123
6   com.apple.Foundation            0x91cd0946 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
7   libcef.dylib                    0x005ed16f 0x243000 + 3842415
8   libcef.dylib                    0x005ece3c 0x243000 + 3841596
9   libcef.dylib                    0x0061d161 0x243000 + 4039009
10  libcef.dylib                    0x00633f4e 0x243000 + 4132686
11  libcef.dylib                    0x0061c89a 0x243000 + 4036762
12  libcef.dylib                    0x00649901 0x243000 + 4221185
13  libcef.dylib                    0x0064998c 0x243000 + 4221324
14  libcef.dylib                    0x00645329 0x243000 + 4203305
15  libsystem_c.dylib               0x994a8557 _pthread_start + 344
16  libsystem_c.dylib               0x99492cee thread_start + 34

Thread 14:
0   libsystem_kernel.dylib          0x9686e7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x9686dcb0 mach_msg + 68
2   libcef.dylib                    0x0061a0df 0x243000 + 4026591
3   libcef.dylib                    0x0034141c 0x243000 + 1041436
4   libcef.dylib                    0x00645329 0x243000 + 4203305
5   libsystem_c.dylib               0x994a8557 _pthread_start + 344
6   libsystem_c.dylib               0x99492cee thread_start + 34

Thread 15:: BrowserBlockingWorker1/-1227419648
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x00646407 0x243000 + 4207623
5   libcef.dylib                    0x0064595d 0x243000 + 4204893
6   libcef.dylib                    0x0064901a 0x243000 + 4218906
7   libcef.dylib                    0x00645329 0x243000 + 4203305
8   libsystem_c.dylib               0x994a8557 _pthread_start + 344
9   libsystem_c.dylib               0x99492cee thread_start + 34

Thread 16:: BrowserBlockingWorker2/-1219022848
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330a1 pthread_cond_wait$UNIX2003 + 71
3   libcef.dylib                    0x0063db03 0x243000 + 4172547
4   libcef.dylib                    0x00646407 0x243000 + 4207623
5   libcef.dylib                    0x0064595d 0x243000 + 4204893
6   libcef.dylib                    0x0064901a 0x243000 + 4218906
7   libcef.dylib                    0x00645329 0x243000 + 4203305
8   libsystem_c.dylib               0x994a8557 _pthread_start + 344
9   libsystem_c.dylib               0x99492cee thread_start + 34

Thread 17:: WorkerPool/-1238618112
0   libsystem_kernel.dylib          0x968708e2 __psynch_cvwait + 10
1   libsystem_c.dylib               0x994ad220 _pthread_cond_wait + 833
2   libsystem_c.dylib               0x995330ec pthread_cond_timedwait$UNIX2003 + 70
3   libcef.dylib                    0x0063dcf9 0x243000 + 4173049
4   libcef.dylib                    0x0064ac7f 0x243000 + 4226175
5   libcef.dylib                    0x0064b0e1 0x243000 + 4227297
6   libcef.dylib                    0x00645329 0x243000 + 4203305
7   libsystem_c.dylib               0x994a8557 _pthread_start + 344
8   libsystem_c.dylib               0x99492cee thread_start + 34

Thread 18:
0   libsystem_kernel.dylib          0x968710ee __workq_kernreturn + 10
1   libsystem_c.dylib               0x994ab04c _pthread_workq_return + 45
2   libsystem_c.dylib               0x994aae19 _pthread_wqthread + 448
3   libsystem_c.dylib               0x99492cca start_wqthread + 30

Thread 19:
0   libsystem_kernel.dylib          0x968710ee __workq_kernreturn + 10
1   libsystem_c.dylib               0x994ab04c _pthread_workq_return + 45
2   libsystem_c.dylib               0x994aae19 _pthread_wqthread + 448
3   libsystem_c.dylib               0x99492cca start_wqthread + 30

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x7e271650  ebx: 0x91c8c1d1  ecx: 0x97d75ec0  edx: 0x47e2b5eb
  edi: 0x97d75ec0  esi: 0x000a3ffd  ebp: 0xbff634d8  esp: 0xbff63498
   ss: 0x00000023  efl: 0x00010206  eip: 0x9179ca87   cs: 0x0000001b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
  cr2: 0x47e2b60b
Logical CPU: 2

Binary Images:
   0x9d000 -   0x132ffb +com.github.atom (1.0) <1DA27DB4-A1C8-3E81-89BC-72867CEA82EC> /Applications/Atom.app/Contents/MacOS/Atom
  0x210000 -   0x239ffb +net.limechat.CocoaOniguruma (1.0) <19FEEFBE-4B1B-3E52-9CA4-0A9755166480> /Applications/Atom.app/Contents/Frameworks/CocoaOniguruma.framework/Versions/A/CocoaOniguruma
  0x243000 -  0x2f7fffb +libcef.dylib (1) <FB24BE66-F1F3-3AF8-A303-DE65FA21F739> /Applications/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib
 0x43bf000 -  0x43ccff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
 0x50b0000 -  0x50b5ffc +com.macromates.edit_in_textmate (1.0) <374FF41B-DB1D-E013-59B1-1BCB931ABCD1> /Library/InputManagers/*/Edit in TextMate.bundle/Contents/MacOS/Edit in TextMate
 0x5293000 -  0x529bffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
 0x52a2000 -  0x52a4fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
 0x52ad000 -  0x52aeffd +cl_kernels (???) <F6B90C5D-4EDB-42ED-A3CB-7EB0A9AA7B83> cl_kernels
 0x52bb000 -  0x52bbff7 +cl_kernels (???) <4366FD17-E18F-46F2-AD7D-85E8494E4907> cl_kernels
 0x6731000 -  0x67c3ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
0x8fe9c000 - 0x8fecee57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
0x90007000 - 0x90007fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x90008000 - 0x90016fff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x90017000 - 0x90029ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
0x9002a000 - 0x9002afff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x9002b000 - 0x9004aff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x9004b000 - 0x903deffb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x903df000 - 0x903e2ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x903e3000 - 0x903eaff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x903eb000 - 0x903ebfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
0x903ec000 - 0x907cfff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x907d0000 - 0x907d2fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x907d5000 - 0x9082cff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x9082d000 - 0x9084afff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
0x9084b000 - 0x9086bffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x9086c000 - 0x9095dffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
0x909b6000 - 0x90a1afff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x90a1b000 - 0x90b26ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x90b27000 - 0x90c1fff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
0x90c20000 - 0x90c6fff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x90c70000 - 0x90f75ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90f76000 - 0x91020fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x91021000 - 0x91037fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x91069000 - 0x916f5feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x916f6000 - 0x91726ff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
0x91727000 - 0x9172bffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9172c000 - 0x9172cfff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x9172d000 - 0x9177dff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x91786000 - 0x91792ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x91797000 - 0x918a4057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
0x918a5000 - 0x918a6fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
0x918a7000 - 0x918abffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
0x918ac000 - 0x9191bffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x9191c000 - 0x91960fff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x91961000 - 0x91961ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
0x91962000 - 0x9196ffff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x91970000 - 0x91995ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x91996000 - 0x91ae3ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x91b61000 - 0x91b7dff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91b7e000 - 0x91bb1ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x91bb2000 - 0x91c2cff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x91c2d000 - 0x91f4aff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x91f4b000 - 0x91f51fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x91f52000 - 0x91fceff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91fcf000 - 0x9201dff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x9201e000 - 0x920a6fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x920a7000 - 0x920e7fff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x920e8000 - 0x92113fff  com.apple.shortcut (2.2 - 2.2) <FA94F2BF-37E1-3F16-9085-7BCCB815BAE9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x92116000 - 0x92120fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
0x92121000 - 0x9216dfff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
0x9216e000 - 0x9217affe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
0x9217b000 - 0x921d2ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x921d3000 - 0x921d3ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x921de000 - 0x92246ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x92247000 - 0x92247fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x92248000 - 0x92306ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x9234d000 - 0x925a5ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x925a6000 - 0x925d9ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
0x925da000 - 0x92633ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x92634000 - 0x928d7ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x928d8000 - 0x928f6ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x928f7000 - 0x92940ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x92941000 - 0x92965fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x92966000 - 0x92974ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
0x92975000 - 0x929cefff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x929cf000 - 0x929d0fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
0x929d1000 - 0x92d89ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92d8a000 - 0x92d9cfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
0x92d9d000 - 0x92dbaff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
0x93638000 - 0x9363bff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x93928000 - 0x93930fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x93931000 - 0x93970ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x93973000 - 0x939baff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x939bb000 - 0x939e4ff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x939e5000 - 0x93a42fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x93a43000 - 0x93a4bfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
0x93a4c000 - 0x93a70fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x93a71000 - 0x93a93fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
0x93a94000 - 0x93a95ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x93a96000 - 0x93baeff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x93f83000 - 0x9437ffeb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x94380000 - 0x943acff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
0x943ad000 - 0x943b7fff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x943b8000 - 0x94634ff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x94635000 - 0x94865fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x94870000 - 0x94887fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x94888000 - 0x94ca5fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x94ca6000 - 0x94ce7ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x94ce8000 - 0x94d0dffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x94d3d000 - 0x94db6ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x94e00000 - 0x94e03fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x94e04000 - 0x94e0effe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x94e0f000 - 0x94e15fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x94e16000 - 0x94f6effb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x94f6f000 - 0x94f6ffff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x94f70000 - 0x94f85fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x94f86000 - 0x94fd4ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x94fdb000 - 0x9506dffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x9506e000 - 0x950e3ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x950e4000 - 0x950e4fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
0x950f1000 - 0x952d9ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x952da000 - 0x95496ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
0x95497000 - 0x95580ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
0x95581000 - 0x955dbfff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x955dc000 - 0x95621ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x95622000 - 0x9567bfff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x963b5000 - 0x963ecffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x9642d000 - 0x9645affb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x9645b000 - 0x964e0ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x964e1000 - 0x965eeff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x965ef000 - 0x96687fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x96688000 - 0x96784ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x96785000 - 0x9685bfff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x9685c000 - 0x96876ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
0x96877000 - 0x9687bfff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x9687c000 - 0x96885ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x96886000 - 0x96892ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x9689d000 - 0x9699bff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x9699c000 - 0x9699fff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x969a0000 - 0x969e5ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x969e6000 - 0x969f6ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x969f7000 - 0x969feffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
0x969ff000 - 0x96a41ffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x96a42000 - 0x96a50fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
0x96a81000 - 0x96a83fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x96a84000 - 0x96a8bfff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
0x96a8c000 - 0x96b3bff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x96b3c000 - 0x96c77ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x96c7f000 - 0x96c8afff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
0x96f27000 - 0x97194fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x97195000 - 0x97235ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x97236000 - 0x97237fff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
0x97238000 - 0x9723bff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
0x9723c000 - 0x9723fffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
0x9724d000 - 0x973c5ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x973c6000 - 0x97f82ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x97f83000 - 0x97f83fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
0x97faa000 - 0x9826afff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9826b000 - 0x982d3fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x982d4000 - 0x982e0ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
0x982e1000 - 0x982e2fff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
0x982e3000 - 0x98349fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x983e2000 - 0x98479ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9847a000 - 0x98488ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
0x98489000 - 0x98523fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x98524000 - 0x9853bff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x9853c000 - 0x98572ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x98ce2000 - 0x98ce6fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x98ce7000 - 0x98ce8fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
0x98e14000 - 0x98e1dffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x98e1e000 - 0x98f7bffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x98f7c000 - 0x98f95fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x98f96000 - 0x99221ff3  com.apple.RawCamera.bundle (4.00 - 658) <53F1DB23-B58B-3EAF-9D1E-95C34E669DDB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x99222000 - 0x99222fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x99223000 - 0x9922bfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9922c000 - 0x99443fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x99490000 - 0x99491ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
0x99492000 - 0x9954ffeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
0x99550000 - 0x996d9ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x996da000 - 0x996e7ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x996e8000 - 0x996f5ff7  com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x996f6000 - 0x997cafff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x997cb000 - 0x99c0dfff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x99c48000 - 0x99c8afff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
0x99d29000 - 0x99d5afff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x99d5b000 - 0x99e79ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x99e7a000 - 0x99e84fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x99e85000 - 0x99eafff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x99eb0000 - 0x99f0bfff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x99f0c000 - 0x99f1fff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x99f20000 - 0x99f27fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
0x99f28000 - 0x99f69ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
0x99f6a000 - 0x99f6dffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x99f6e000 - 0x9a022fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9a023000 - 0x9a027fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9a028000 - 0x9a031ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x9a032000 - 0x9a05fffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
0x9a060000 - 0x9a060fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x9a066000 - 0x9a07bfff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9a07c000 - 0x9a08cff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
0x9a08d000 - 0x9a0effff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
0x9a0f0000 - 0x9a20cff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x9a20d000 - 0x9a268ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x9a269000 - 0x9a28eff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x9a28f000 - 0x9a2cafe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x9a2cb000 - 0x9a2ccfff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
0x9a394000 - 0x9a396fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
0x9a397000 - 0x9a399ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x9a39a000 - 0x9a3feff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
0x9a3ff000 - 0x9a4f3ff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x9a4f4000 - 0x9a536ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
0x9a56d000 - 0x9a596fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
0x9a597000 - 0x9a678fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
0x9a679000 - 0x9a696fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
0x9a697000 - 0x9a69bff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
0x9a69c000 - 0x9a69cfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 4256
    thread_create: 0
    thread_set_state: 352

VM Region Summary:
ReadOnly portion of Libraries: Total=201.1M resident=132.2M(66%) swapped_out_or_unallocated=68.9M(34%)
Writable regions: Total=287.5M written=24.6M(9%) resident=42.0M(15%) swapped_out=0K(0%) unallocated=245.5M(85%)

REGION TYPE                      VIRTUAL
===========                      =======
ATS (font support)                 31.9M
ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
CG backing stores                  5412K
CG image                             12K
CG shared images                    256K
CoreServices                       2352K
MALLOC                            111.4M
MALLOC guard page                    48K
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=35                      4380K
OpenCL                               20K
Stack                             178.3M
VM_ALLOCATE                        16.7M
__DATA                             8700K
__DATA/__OBJC                       392K
__IMAGE                             528K
__IMPORT                              4K
__LINKEDIT                         32.5M
__OBJC                             2232K
__OBJC/__DATA                        52K
__PAGEZERO                            4K
__TEXT                            168.7M
__UNICODE                           544K
mapped file                       105.3M
shared memory                       308K
===========                      =======
TOTAL                             669.4M
TOTAL, minus reserved VM space    669.4M

Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i7, 3.4 GHz, 16 GB, SMC 1.72f2
Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D534F344758334D314131333333433920
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D534F344758334D314131333333433920
Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D534F344758334D314131333333433920
Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D534F344758334D314131333333433920
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.70.23-P2P
Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
Serial ATA Device: APPLE SSD TS256C, 251 GB
Serial ATA Device: OPTIARC DVD RW AD-5690H
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: io|2, 0x13b2, 0x0008, 0xfd130000 / 5
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

Can't view HTML files

Opening index.html at the root of the atom repository logs the following error:

TypeError: Object #<AceFoldAdaptor> has no method 'getState'
    at [object Object].getFoldWidget (/home/kevin/repositories/atom/vendor/ace/mode/folding/mixed.js:68:35)
    at FoldSuggester.isBufferRowFoldable (/home/kevin/repositories/atom/src/app/fold-suggester.coffee:17:56)
    at Renderer.buildLinesForBufferRows (/home/kevin/repositories/atom/src/app/renderer.coffee:306:50)
    at Renderer.buildLineMap (/home/kevin/repositories/atom/src/app/renderer.coffee:65:53)
    at new Renderer (/home/kevin/repositories/atom/src/app/renderer.coffee:54:12)
    at [object Object].setBuffer (/home/kevin/repositories/atom/src/app/editor.coffee:520:23)
    at [object Object].initialize (/home/kevin/repositories/atom/src/app/editor.coffee:141:14)
    at [object Object].View (/home/kevin/repositories/atom/vendor/space-pen.coffee:105:66)
    at [object Object].Editor (/home/kevin/repositories/atom/src/app/editor.coffee:32:36)
    at [object Object].open (/home/kevin/repositories/atom/src/app/root-view.coffee:170:18)," source: file:///home/kevin/repositories/atom/index.html(12)

"Shell" mode

Emacs allows you to run interactive interpreters inside of a buffer. In particular, this is handy with things like a plain shell like Bash, but also works with things like IRB.

Emacs even has keybindings to allow you to execute parts of a buffer inside the related interactive shell.

I'd love to see an extension that would allow running a shell inside a new split.

Fullscreen cmd+n opens fullscreen window

Right now if you have Atom fullscreen'd in OS X and hit cmd+n, a new fullscreen window opens. It'd be great if a normal, non-fullscreen window opened instead.

Because Atom is project based making a window fullscreen feels like you're making the specific project fullscreen, not Atom itself. So it's weird that the fullscreen status is not local to the project but universal to the application.

I'm not sure if that's against OS X rules or whatever but it sure would be neat.

Needs more retina

I fired up Atom for the first time on my new machine (and it did it's auto update thing), and noticed that the text rendering doesn't seem to be retina-compatible. Here's a screenshot of it side-by-side to ST2:

They're obviously using different fonts, but the 1x pixelation is very noticeable in Atom.

Initial selection gets ignored when dragging cursor

What I did

I double clicked a word to select it. I then dragged backwards to select the rest of the the entire string.

Steps

  1. Drag backwards

What happened

The initially selected portion is unselected.

What I expected

Select all dem things.

Notes

  1. Doing this forward works, but you can see that the selection follows the cursor.
  2. When double clicking to select and then draggin on OS X, selection should be by WORD not by char. I might still make another issue regarding this, but I dropped it here for now.

White Screen of Death

Occasionally I'll come back to an Atom window I haven't touched in a few minutes and it'll just be white:

Can't right click to toggle devtools or anything.

Support using Atom as EDITOR

Using many tools, such as git, from the CLI requires a functioning EDITOR.

Due to how Atom launches, we cannot rely on open's -W and -n flags to keep the process open:

~/github/atom(master) » open -W -n /Applications/Atom.app --args --resource-path=`pwd` .
Unable to block on application (GetProcessPID() returned 18446744073709551016)

This means we can't use Atom to write git commit messages, etc which is pretty lame.

here's how TextMate does it which I think is totally sane behavior

Using command-/ in a file without a grammar throws exception

When trying to comment out a line using command-/, Atom throws an exception.

I was inside this .scss file.

@import "../globals";

/* TOKEN */

#token{
  max-width: 600px;
  padding: 10px 40px 40px 40px;
  margin: 0 auto;

  h2{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
  }

  h2 img{
    margin-right: 15px;
    width: 48px;
    border: #d1d1d1 3px solid;
  }

  .user-token{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 700;
    color: $linkColor;
    background-color: #e7e7e7;
    border: #d4d4d4 2px solid;

    padding: 10px
  }

}

Update Loop

I keep updating Atom, but whenever I relaunch it I get this software update notice each time.

Don't consider _ part of a word

In Atom if I type def_unkt and hit option-d, it deletes everything.

If I type def-unkt and hit option-d, it deletes unkt.

I always love when _ and - are treated the same by the editor because in programming they are often used similarly:

RATE_OF_CHANGE vs rate-of-change

Is this something we can change in Atom?

Scratch buffers

Emacs has a really useful buffer opened by default (and the default buffer view if emacs is ran without any arguments for a file or directory) called *scratch*.

Not only is this buffer a great place to just store text temporarily, but the really power is that it is an Emacs Lisp buffer designed to allow you to write code and execute within the running context of the editor.

I'd love to something similar for Atom, with keybindings to "run" a selected region.

Buffer mode map

It'd be nice to be able to define an arbitrary regex to match on a filename that determines which "mode" that editor should be in.

For example, here's some code from my Emacs config:

(defun make-auto (pattern mode)
  "Add a pattern to the auto-mode alist."
  (let ((ans (assoc pattern auto-mode-alist)))
    (if (and ans (equal mode (cdr ans)))
      (print "Do Nothing")
      (print "Added")
      (setq auto-mode-alist
      (cons (cons pattern mode) auto-mode-alist)))))


(make-auto "\\.clj$"                        'clojure-mode)
(make-auto "\\.pp$"                         'puppet-mode)
(make-auto "\\.feature$"                    'feature-mode)
(make-auto "\\.\\(md\\|mkdn\\|markdown\\)$" 'markdown-mode)
(make-auto "\\.mustache$"                   'mustache-mode)
(make-auto "^\\(Puppetfile\\|Gemfile\\)\\(\\.lock\\)$" 'ruby-mode)

Auto-indent on paste indenting too much

Here are some examples, all in Ruby.

First:

def hello
  puts :hello
end

Copy all of the "puts" line (including the whitespace), hit enter, then paste on the next line. You end up with:

def hello
  puts :hello
    puts :hello
end

Another example:

update_attributes \
  :name => name,
  :age => 55

Copy that, put your cursor immediately after 55, hit enter, then paste. I see this:

update_attributes \
  :name => name,
  :age => 55
  update_attributes \
    :name => name,
    :age => 55  

Even if you ctrl-a to the start of the line before pasting the result is the same.

Take this code and copy lines 6 & 7:

class Gist < ActiveRecord::Base
  # The root directory where repositories will be stored on disk.
  #
  # Returns a Pathname.
  REPO_ROOT = Pathname.new(Chimney.instance.repo_directory)

  include Gists::PaginationExtensions
end

Put your cursor on the end of the include line (line 7) then hit enter and paste, I get this:

class Gist < ActiveRecord::Base
  # The root directory where repositories will be stored on disk.
  #
  # Returns a Pathname.
  REPO_ROOT = Pathname.new(Chimney.instance.repo_directory)

  include Gists::PaginationExtensions

    include Gists::PaginationExtensions  
end

Let me know if you need more examples, most of the test files and controllers in github/github have this problem too.

Actual global settings

Julie wants tabs to be two spaces EVERYWHERE. If the project you are currently working on doesn't conform to her will, it should detect this and alert her.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.