qvacua / vimr

VimR — Neovim GUI for macOS in Swift
https://twitter.com/VimRefined
MIT License
6.65k stars 218 forks source link

VimR won't open any windows #111

Closed spadgett closed 8 years ago

spadgett commented 10 years ago

VimR Version 0.1.6 (18)

I suspect this is a conflict with Eclim. I have Eclim 2.3.4 installed. If I rename my .vim folder to something else, VimR works.

Here is an error from the logs:

-[VRMainWindowController controller:setTooltipDelay:]: unrecognized selector sent to instance 0x61800019aea0

This error repeats when I try to open a new window from the VimR menu.

naneau commented 10 years ago

I seem to be running into the same problem, I also get a whole bunch of

2014-08-21 11:24:45.289 AM VimR[29403]: -[MMVimController(Private) addMenuItemWithDescriptor:atIndex:tip:icon:keyEquivalent:modifierMask:action:isAlternate:]@1143: Menu item 'Plugin->eclim->Buffers' has no parent

type errors.

qvacua commented 10 years ago

Oh, right. That's because I do not respond to all calls from MacVim(Framework). I'll try to figure out the minimal amount of reaction needed.

alvarofe commented 10 years ago

I am having the same issue so I left here my .vimrc if it could help to resolve the issue.

" https://github.com/sontek/dotfiles/ " ========================================================== " Dependencies - Libraries/Applications outside of vim " ========================================================== " Pep8 - http://pypi.python.org/pypi/pep8 " Pyflakes " Ack " nose, django-nose

" ========================================================== " Plugins included " ========================================================== " Pathogen " Better Management of VIM plugins " " GunDo " Visual Undo in vim with diff's to check the differences " " Pytest " Runs your Python tests in Vim. " " Commant-T " Allows easy search and opening of files within a given path " " Snipmate " Configurable snippets to avoid re-typing common comands " " PyFlakes " Underlines and displays errors with Python on-the-fly " " Fugitive " Interface with git from vim " " Git " Syntax highlighting for git config files " " Pydoc " Opens up pydoc within vim " " Surround " Allows you to surround text with open/close tags " " Py.test " Run py.test test's from within vim " " MakeGreen " Generic test runner that works with nose " " ========================================================== " Shortcuts " ========================================================== set nocompatible " Don't be compatible with vi let mapleader="," " change the leader to be a comma vs slash

" Seriously, guys. It's not like :W is bound to anything anyway. command! W :w

fu! SplitScroll() :wincmd v :wincmd w execute "normal! " :set scrollbind :wincmd w :set scrollbind endfu

nmap sb :call SplitScroll()

"l:set scrollbind

" sudo write this cmap W! w !sudo tee % >/dev/null

" Toggle the tasklist map td TaskList

" Run pep8 let g:pep8_map='8'

" run py.test's nmap tf :Pytest file nmap tc :Pytest class nmap tm :Pytest method nmap tn :Pytest next nmap tp :Pytest previous nmap te :Pytest error

" Run django tests map dt :set makeprg=python\ manage.py\ test|:call MakeGreen()

" Reload Vimrc map V :source ~/.vimrc:filetype detect:exe ":echo 'vimrc reloaded'"

" open/close the quickfix window nmap c :copen nmap cc :cclose

" for when we forget to use sudo to open/edit a file cmap w!! w !sudo tee % >/dev/null

" ctrl-jklm changes to that split map j map k map l map h

" and lets make these all work in insert mode too ( makes next cmd " happen as if in command mode ) imap

" Open NerdTree let g:NERDTreeDirArrows=0 let g:NERDTreeStatusline = "%t""" map n :NERDTreeToggle map m :make

map f :CtrlP map b :CtrlPBuffer

" Ack searching nmap a :Ack!

" Load the Gundo window map g :GundoToggle

" Jump to the definition of whatever the cursor is on map j :RopeGotoDefinition

" Rename whatever the cursor is on (including references to it) map r :RopeRename " ========================================================== " Pathogen - Allows us to organize our vim plugins " ========================================================== " Load pathogen with docs for all plugins filetype off call pathogen#incubate() call pathogen#helptags()

" ========================================================== " Basic Settings " ========================================================== syntax on " syntax highlighing filetype on " try to detect filetypes filetype plugin indent on " enable loading indent file for filetype set number " Display line numbers set numberwidth=1 " using only 1 column (and 1 space) while possible set background=dark " We are using dark background in vim set title " show title in console title bar set wildmenu " Menu completion in command mode on set wildmode=full " cycles between all matching choices.

" don't bell or blink set noerrorbells set vb t_vb=

" Ignore these files when completing set wildignore+=.o,.obj,.git,.pyc set wildignore+=eggs/ set wildignore+=.egg-info/

set grepprg=ack " replace the default grep program with ack

" Set working directory nnoremap . :lcd %:p:h

" Disable the colorcolumn when switching modes. Make sure this is the " first autocmd for the filetype here "autocmd FileType * setlocal colorcolumn=0

""" Insert completion " don't select first item, follow typing in autocomplete set completeopt=menuone,longest,preview set pumheight=6 " Keep a small completion window

""" Moving Around/Editing set cursorline " have a line indicate the cursor location set ruler " show the cursor position all the time set nostartofline " Avoid moving cursor to BOL when jumping around set virtualedit=block " Let cursor move past the last char in mode set scrolloff=3 " Keep 3 context lines above and below the cursor set backspace=2 " Allow backspacing over autoindent, EOL, and BOL set showmatch " Briefly jump to a paren once it's balanced set nowrap " don't wrap text set linebreak " don't wrap textin the middle of a word set autoindent " always set autoindenting on set smartindent " use smart indent if there is no indent file set tabstop=4 " inserts 4 spaces set shiftwidth=4 " but an indent level is 2 spaces wide. set softtabstop=4 " over an autoindent deletes both spaces. set expandtab " Use spaces, not tabs, for autoindent/tab key. set shiftround " rounds indent to a multiple of shiftwidth set matchpairs+=<:> " show matching <> (html mainly) as well set foldmethod=indent " allow us to fold on indents set foldlevel=99 " don't fold by default

" don't outdent hashes inoremap # #

" close preview window automatically when we move around autocmd CursorMovedI * if pumvisible() == 0|pclose|endif autocmd InsertLeave * if pumvisible() == 0|pclose|endif

"""" Reading/Writing set noautowrite " Never write a file unless I request it. set noautowriteall " NEVER. set noautoread " Don't automatically re-read changed files. set modeline " Allow vim options to be embedded in files; set modelines=5 " they must be within the first or last 5 lines. set ffs=unix,dos,mac " Try recognizing dos, unix, and mac line endings.

"""" Messages, Info, Status set ls=2 " allways show status line set vb t_vb= " Disable all bells. I hate ringing/flashing. set confirm " Y-N-C prompt if closing with unsaved changes. set showcmd " Show incomplete normal mode commands as I type. set report=0 " : commands always print changed line count. set shortmess+=a " Use [+]/[RO]/[w] for modified/readonly/written. set ruler " Show some info, even without statuslines. set laststatus=2 " Always show statusline, even if only 1 window. set statusline=[%l,%v\ %P%M]\ %f\ %r%h%w\ (%{&ff})\ %{fugitive#statusline()}

" displays tabs with :set list & displays when a line runs off-screen set listchars=tab:>-,eol:$,trail:-,precedes:<,extends:> set list

""" Searching and Patterns set ignorecase " Default to using case insensitive searches, set smartcase " unless uppercase letters are used in the regex. set smarttab " Handle tabs more intelligently set hlsearch " Highlight searches by default. set incsearch " Incrementally search while typing a /regex

"""" Display if has("gui_running") " Remove menu bar set guioptions-=m

" Remove toolbar
set guioptions-=T

endif

" Paste from clipboard map p "+p

" Quit window on q nnoremap q :q

" hide matches on space nnoremap :nohlsearch

" Remove trailing whitespace on S nnoremap S :%s/\s+$//:let @/=''

" Select the item in the list with enter " inoremap pumvisible() ? "" : "u"

" ========================================================== " Javascript " ========================================================== au BufRead *.js set makeprg=jslint\ %

" Use tab to scroll through autocomplete menus "autocmd VimEnter * imap pumvisible() ? "" : "" "autocmd VimEnter * imap pumvisible() ? "" : ""

let g:acp_completeoptPreview=1

" =========================================================== " FileType specific changes " ============================================================ " Mako/HTML autocmd BufNewFile,BufRead .mako,.mak,*.jinja2 setlocal ft=html autocmd FileType html,xhtml,xml,css setlocal expandtab shiftwidth=2 tabstop=2 softtabstop=2

" Python "au BufRead .py compiler nose au FileType python set omnifunc=pythoncomplete#Complete au FileType python setlocal expandtab shiftwidth=4 tabstop=8 softtabstop=4 smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,with au FileType coffee setlocal expandtab shiftwidth=4 tabstop=8 softtabstop=4 smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,with au BufRead .py set efm=%C\ %.%#,%A\ \ File\ \"%f\"\,\ line\ %l%.%#,%Z%[%^\ ]%\@=%m " Don't let pyflakes use the quickfix window let g:pyflakes_use_quickfix = 0 let g:SuperTabDefaultCompletionType = "context"

" Add the virtualenv's site-packages to vim path if has('python') py << EOF import os.path import sys import vim if 'VIRTUAL_ENV' in os.environ: project_base_dir = os.environ['VIRTUAL_ENV'] sys.path.insert(0, project_base_dir) activate_this = os.path.join(project_base_dir, 'bin/activate_this.py') execfile(activate_this, dict(file=activate_this)) EOF endif

" Load up virtualenv's vimrc if it exists if filereadable($VIRTUAL_ENV . '/.vimrc') source $VIRTUAL_ENV/.vimrc endif

if exists("&colorcolumn") set colorcolumn=79 endif syntax enable

set nocompatible " be iMproved filetype off " required!

set rtp+=~/.vim/bundle/vundle/ call vundle#rc()

Bundle 'gmarik/vundle' Bundle 'Valloric/YouCompleteMe' filetype plugin on syntax enable set mouse=a set clipboard=unnamed nmap :call whitespace#strip_trailing() "The following three lines map Ctrl+s to save in vi. You can comment "these out, it has nothing to do with syntax highlighting or colors. nmap w :w

set background=dark set hlsearch set nu set smartindent set tabstop=4 set shiftwidth=4 set expandtab

"au BufReadPost .xml colorscheme github "au BufReadPost .sh colorscheme github "au BufReadPost .twig colorscheme koehler "au BufReadPost .css colorscheme monokai "au BufReadPost .js colorscheme gitub "au BufReadPost .py colorscheme github "au BufReadPost .tex colorscheme github "au BufReadPost .bib colorscheme github ""au BufReadPost .ml colorscheme dracula "au BufReadPost .json colorscheme dracula "au BufReadPost .html colorscheme dracula "au BufReadPost .java colorscheme github "au BufReadPost .ml colorscheme dracula "au BufReadPost .mli colorscheme dracula "au BufReadPost .c colorscheme github ""au BufReadPost .h colorscheme dracula ""au BufReadPost *.php colorscheme two2tango " " colorscheme github "#TagbarToogle nmap :TagbarToggle

"Noode JS" au FileType javascript set dictionary+=$HOME/.vim/dict/vim-node-dict/dict/node.dict set gfn=Monaco:h12 set omnifunc=syntaxcomplete#Complete

"set foldmethod=indent "set foldlevel=1 "set foldclose=all

"augroup vimrc "au BufReadPre * setlocal foldmethod=indent "au BufWinEnter * if &fdm == 'indent' | setlocal foldmethod=manual | endif "augroup END'' " " "colorscheme dracula set nolist

let g:ocp_indent_vimfile = system("opam config var share") let g:ocp_indent_vimfile = substitute(g:ocp_indent_vimfile, '[\r\n]*$', '', '') let g:ocp_indent_vimfile = g:ocp_indent_vimfile . "/vim/syntax/ocp-indent.vim" autocmd FileType ocaml exec ":source " . g:ocp_indent_vimfile""""

" YCM let g:ycm_extra_confgloblist = ['~/.vim/bundle/YouCompleteMe/cpp/ycm/','!~/_'] let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py'

" Syntastic "let g:syntastic_c_checkers=['make'] "let g:syntastic_always_populate_loc_list = 1 "let g:syntastic_check_on_open=1 "let g:syntastic_enable_signs=1 "let g:syntastic_error_symbol = '✗' "let g:syntastic_warning_symbol = '⚠' "set statusline+=%#warningmsg# ""set statusline+=%{SyntasticStatuslineFlag()} "set statusline+=%*gbar

Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}

set guifont=Monaco\ for\ Powerline:h12 let g:Powerline_symbols = 'fancy' set encoding=utf-8 set t_Co=256 set fillchars+=stl:\ ,stlnc:\ set term=xterm-256color set termencoding=utf-8

if has("gui_running") let s:uname = system("uname") if s:uname == "Darwin\n" set guifont=Monaco\ for\ Powerline:h12 "colorscheme github colorscheme dracula endif endif

let python_highlight_all = 1

benfrain commented 10 years ago

Yes, me too. Just downloaded to take a peek but can't get anything to open. My vimrc is here: https://gist.github.com/benfrain/f09dd39e66fe2da9cf0a

qvacua commented 10 years ago

Do you still have a problem when you temporarily deactivate your vimrc?

alvarofe commented 10 years ago

If I deactivate my vimrc everything works properly

naneau commented 10 years ago

I too can make things work by deactivating my vimrc, I tried deactivating all bundles (managed through Vundle) one by one to figure out which one was causing the problem, but couldn't find it. Pretty convinced it's caused by Eclim.

qvacua commented 10 years ago

@benfrain: I tried your vimrc on my machine and VimR opens (with a slight drawing artifact on the top right corner). Maybe you're on 10.8? Since I don't have 10.8, I cannot/could not test it. Tried it without your vimrc?

@naneau @spadgett: I'll try to fix it.

@alvarofe Could you send me your .vim via mail or so? Pathogen does not seem to automatically download the plugins...

benfrain commented 10 years ago

@qvacua if I remove my .vimrc I have the same issue. I am on 10.9 (Build 13E28). MacBook Air (if that makes any difference).

qvacua commented 10 years ago

@spadgett and @naneau: try the snapshot http://taewon.de/snapshots/VimR-20140822-1929.tar.bz2

qvacua commented 10 years ago

@benfrain: hm.. that's weird. I have exact the same setting... Could you tell me what Console says?

spadgett commented 10 years ago

@qvacua The snapshot works great! Thanks.

qvacua commented 10 years ago

Well, I kind of cheated: You will not be able to see any tooltips (probably) coming from eclim... I'll add (copy :blush:) the real implementation from MacVim some time later...

qvacua commented 10 years ago

@alvarofe: I tried your vimrc with the vim folder; it works (on my machine...): it takes a bit more time to open the window than my setting, but it works. Does Console say anything useful?

benfrain commented 10 years ago

Hi Tae,

Afraid I'm away from my computer for a week now but will send you the output on my return.

Thanks, Ben

On 22 Aug 2014, at 18:37, Tae Won Ha notifications@github.com wrote:

@benfrain: hm.. that's weird. I have exact the same setting... Could you tell me what Console says?

— Reply to this email directly or view it on GitHub.

shennyg commented 10 years ago

I have this same issue.

My .vimrc https://github.com/shennyg/dotfiles/blob/master/.vimrc

My console output

8/22/14 11:12:03.393 AM VimR[70971]: objc[70971]: Class VRPlugin is implemented in both /Applications/VimR.app/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition and /Applications/VimR.app/Contents/PlugIns/Markdown.vimr-plugin/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition. One of the two will be used. Which one is undefined.

I tried the snapshot with no luck.

naneau commented 10 years ago

@qvacua snapshot works great for me as well! Thank you :)

qvacua commented 10 years ago

@shennyg: I tried your vimrc and it works.. I did not enter the API key for the WakeTime, but still, it worked... You can ignore the Console output, that's no problem.

@shennyg, @benfrain, @alvarofe: Could you please delete the com.qvacua.VimR.plist file in ~/Library/Preferences and try to launch VimR again?

alvarofe commented 10 years ago

@qvacua here you have the console output https://gist.github.com/e370ba792e69baa9f57f.git

qvacua commented 10 years ago

@alvarofe: it seems that it is a Python related problem: Fatal Python error: PyThreadState_Get: no current thread (line 745 in your Console output) And it seems that others had a similar problem with MacVim. It was YCM-related problem, but maybe it's also the reason why some could not use VimR with YCM.. Could you try some suggestions outlined in the YCM-issue?

alvarofe commented 10 years ago

@qvacua I have MacVim and everything works fine. I'll try to research more to try understand what happen. If I find the solution, I'll let you know.

PS: Delete com.qvacua.VimR.plist from Preferences did not work

sentientmonkey commented 10 years ago

Same issue for me.

I get

objc[35995]: Class VRPlugin is implemented in both /Applications/VimR.app/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition and /Applications/VimR.app/Contents/PlugIns/Markdown.vimr-plugin/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition. One of the two will be used. Which one is undefined.

when I launch, and a gray window that can't open anything.

My vimfiles are here if that's helpful: https://github.com/sentientmonkey/vimfiles

qvacua commented 10 years ago

@alvarofe Have you tried to use the stock Python of OS X?

@sentientmonkey The duplicate class thing is normal and is not the reason for the bug. Would it be possible to build VimR from source, run it and tell me what it logs (in Xcode for instance)?

benfrain commented 10 years ago

@qvacua OK, finally got chance to test this. Just downloaded v0.0.2 and restarted - tried to open a file and this is the crash report from Console:

Process: Vim [3604] Path: /Applications/VimR.app/Contents/Frameworks/MacVimFramework.framework/Versions/A/Vim Identifier: Vim Version: 0 Code Type: X86-64 (Native) Parent Process: VimR [3478] Responsible: VimR [3478] User ID: 501

Date/Time: 2014-08-30 19:01:34.185 +0100 OS Version: Mac OS X 10.9.4 (13E28) Report Version: 11 Anonymous UUID: ECBE26DC-F7D6-DF8C-DCA6-CCC48B642CC7

Sleep/Wake UUID: D06FFEEF-F370-4AE6-B0A5-1BE49E1F9CEB

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

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

VM Regions Near 0: --> __TEXT 0000000108e93000-0000000109098000 [ 2068K] r-x/rwx SM=COW /Applications/VimR.app/Contents/Frameworks/MacVimFramework.framework/Versions/A/Vim

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff94b3b292 __kill + 10 1 Vim 0x0000000108f9895b mch_exit + 219 2 Vim 0x0000000108f9b9de deathtrap + 430 3 libsystem_platform.dylib 0x00007fff8ed035aa _sigtramp + 26 4 ??? 000000000000000000 0 + 0 5 libruby.1.dylib 0x000000010d157c24 rb_intern + 53 6 libruby.1.dylib 0x000000010d10d939 rb_define_module + 16 7 ext.bundle 0x000000010adfd011 Init_ext + 21 8 libruby.2.0.0.dylib 0x000000010939dcde dln_load + 186 9 libruby.2.0.0.dylib 0x00000001094aef11 rb_vm_call_cfunc + 416 10 libruby.2.0.0.dylib 0x00000001093cf10e rb_require_safe + 1449 11 libruby.2.0.0.dylib 0x00000001094b5f49 0x10939d000 + 1150793 12 libruby.2.0.0.dylib 0x00000001094a4677 0x10939d000 + 1078903 13 libruby.2.0.0.dylib 0x00000001094ae0c8 0x10939d000 + 1118408 14 libruby.2.0.0.dylib 0x00000001094ae02d rb_iseq_eval + 366 15 libruby.2.0.0.dylib 0x00000001093cea37 0x10939d000 + 203319 16 libruby.2.0.0.dylib 0x00000001093cf070 rb_require_safe + 1291 17 libruby.2.0.0.dylib 0x00000001094b5f49 0x10939d000 + 1150793 18 libruby.2.0.0.dylib 0x00000001094a4677 0x10939d000 + 1078903 19 libruby.2.0.0.dylib 0x00000001094ae0c8 0x10939d000 + 1118408 20 libruby.2.0.0.dylib 0x00000001094ae02d rb_iseq_eval + 366 21 libruby.2.0.0.dylib 0x00000001093cea37 0x10939d000 + 203319 22 libruby.2.0.0.dylib 0x00000001093cf070 rb_require_safe + 1291 23 libruby.2.0.0.dylib 0x00000001094b5f49 0x10939d000 + 1150793 24 libruby.2.0.0.dylib 0x00000001094b595c 0x10939d000 + 1149276 25 libruby.2.0.0.dylib 0x00000001094a4677 0x10939d000 + 1078903 26 libruby.2.0.0.dylib 0x00000001094ae0c8 0x10939d000 + 1118408 27 libruby.2.0.0.dylib 0x00000001094b2544 0x10939d000 + 1135940 28 libruby.2.0.0.dylib 0x00000001093cc5ed rb_protect + 214 29 Vim 0x000000010905c892 ex_ruby + 66 30 Vim 0x0000000108ef01f7 do_cmdline + 15799 31 Vim 0x0000000108eeaf86 do_source + 1766 32 Vim 0x0000000108eea66f do_in_runtimepath + 543 33 Vim 0x0000000109067a30 main + 9424 34 libdyld.dylib 0x00007fff95f545fd start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff94b3c662 kevent64 + 10 1 libdispatch.dylib 0x00007fff98b98421 _dispatch_mgr_invoke + 239 2 libdispatch.dylib 0x00007fff98b98136 _dispatch_mgr_thread + 52

Thread 2: 0 libsystem_kernel.dylib 0x00007fff94b3be6a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8e9bef08 _pthread_wqthread + 330 2 libsystem_pthread.dylib 0x00007fff8e9c1fb9 start_wqthread + 13

Thread 3: 0 libsystem_kernel.dylib 0x00007fff94b3be6a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8e9bef08 _pthread_wqthread + 330 2 libsystem_pthread.dylib 0x00007fff8e9c1fb9 start_wqthread + 13

Thread 4: 0 libsystem_kernel.dylib 0x00007fff94b3c94a poll + 10 1 libruby.2.0.0.dylib 0x00000001094c10e1 0x10939d000 + 1196257 2 libsystem_pthread.dylib 0x00007fff8e9bd899 _pthread_body + 138 3 libsystem_pthread.dylib 0x00007fff8e9bd72a _pthread_start + 137 4 libsystem_pthread.dylib 0x00007fff8e9c1fc9 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x00000001090b9eac rcx: 0x00007fbf098f4838 rdx: 0x0000000000000000 rdi: 0x0000000000000e14 rsi: 0x000000000000000b rbp: 0x00007fbf098f4860 rsp: 0x00007fbf098f4838 r8: 0x0000000000000000 r9: 0x00007fbf08811200 r10: 0x0000000000000005 r11: 0x0000000000000202 r12: 0x0000000000000000 r13: 0x00007fbf098ea470 r14: 0x0000000000000001 r15: 0x00000001090ba4b0 rip: 0x00007fff94b3b292 rfl: 0x0000000000000202 cr2: 0x0000000108f31960

Logical CPU: 0 Error Code: 0x02000025 Trap Number: 133

Binary Images: 0x108e93000 - 0x109097ff7 +Vim (0) <91264125-734D-34B5-8E59-62BC930E0E2D> /Applications/VimR.app/Contents/Frameworks/MacVimFramework.framework/Versions/A/Vim 0x109113000 - 0x109220ff7 libperl.dylib (92) <87E17EBA-E472-3BDF-A627-1EE674921C79> /System/Library/Perl/5.16/darwin-thread-multi-2level/CORE/libperl.dylib 0x10924d000 - 0x109337fff org.python.python (2.7.5 - 2.7.5) <8DD65C8B-686D-3BF1-8682-70F02D28D200> /System/Library/Frameworks/Python.framework/Versions/2.7/Python 0x10939d000 - 0x109531ff7 libruby.2.0.0.dylib (101) <016263D8-2073-3D21-93D6-9DEC92552D64> /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/libruby.2.0.0.dylib 0x10ad8d000 - 0x10ad8fff7 com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings 0x10ade0000 - 0x10ade8ff3 libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib 0x10adfc000 - 0x10adfdfff +ext.bundle (???) <2AC87CC0-2095-21D0-DD1C-E1F4D4481041> /Users/USER/*/ext.bundle 0x10c828000 - 0x10c829fff encdb.bundle (101) <8D15FFB7-0576-3BC4-85F7-18CE09E978E3> /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin13/enc/encdb.bundle 0x10c82e000 - 0x10c82ffff transdb.bundle (101) <1F7E86E4-4214-33FC-8A44-850C6EA3760F> /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin13/enc/trans/transdb.bundle 0x10d103000 - 0x10d1a9fff libruby.1.dylib (4) /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/libruby.1.dylib 0x7fff60b9e000 - 0x7fff60bd1817 dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld 0x7fff8cbb1000 - 0x7fff8cbe0ff9 com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff8cc42000 - 0x7fff8cd26fff com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8cd27000 - 0x7fff8cd2bfff com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff8cd5e000 - 0x7fff8cd61fff com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff8d10b000 - 0x7fff8d114ffd com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff8d115000 - 0x7fff8d204fff libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8d4ae000 - 0x7fff8d4b9fff libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8d535000 - 0x7fff8d55cffb libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib 0x7fff8d55d000 - 0x7fff8d847fff com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8d848000 - 0x7fff8d8acfff com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff8dc9b000 - 0x7fff8dccafd2 libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib 0x7fff8dccb000 - 0x7fff8dccfff7 libcache.dylib (62) /usr/lib/system/libcache.dylib 0x7fff8dcd0000 - 0x7fff8dfcefff com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff8dfdc000 - 0x7fff8e029ff2 com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff8e115000 - 0x7fff8e154fff libGLU.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8e155000 - 0x7fff8e15dffc libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8e996000 - 0x7fff8e9bbff7 com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8e9bc000 - 0x7fff8e9c3ff7 libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib 0x7fff8ea2a000 - 0x7fff8ea71ff7 libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib 0x7fff8ea72000 - 0x7fff8eab0ff7 libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff8eab1000 - 0x7fff8eac0ff8 com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff8ead5000 - 0x7fff8ead5ff7 libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib 0x7fff8ead6000 - 0x7fff8eb57fff com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff8eb58000 - 0x7fff8eb5fffb libcopyfile.dylib (103.92.1) /usr/lib/system/libcopyfile.dylib 0x7fff8eb60000 - 0x7fff8eb64ff7 libGIF.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8eb65000 - 0x7fff8eb67ff7 com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff8ebae000 - 0x7fff8ebb1fff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff8ebb2000 - 0x7fff8ebb9fff com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8ebba000 - 0x7fff8ebc2fff libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib 0x7fff8ebfe000 - 0x7fff8ecaeff7 libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff8ecaf000 - 0x7fff8ecb2ffc com.apple.IOSurface (91.1 - 91.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8ed00000 - 0x7fff8ed06ff7 libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib 0x7fff8ed07000 - 0x7fff8edd1fff com.apple.LaunchServices (572.28 - 572.28) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8edf0000 - 0x7fff8ee2bfff com.apple.bom (14.0 - 193.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff8eeb8000 - 0x7fff8eeb9ff7 libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib 0x7fff8f309000 - 0x7fff8f322ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8f38e000 - 0x7fff8f3b7fff com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff8f3b8000 - 0x7fff8f3e7fff com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff8f438000 - 0x7fff8f58cff3 com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8fb34000 - 0x7fff8fb99ffb com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff8ff35000 - 0x7fff8ff35fff com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8ff91000 - 0x7fff8ffd2fff com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff90048000 - 0x7fff9009afff libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib 0x7fff90386000 - 0x7fff90390ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff90391000 - 0x7fff90497ff7 com.apple.ImageIO.framework (3.3.0 - 1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff904b4000 - 0x7fff904b4fff com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff90526000 - 0x7fff90526fff com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff90527000 - 0x7fff90582ffb com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff90583000 - 0x7fff9058fffb com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff90662000 - 0x7fff90686ff7 libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff90687000 - 0x7fff90752fff libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff909bf000 - 0x7fff90a12fff com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface 0x7fff90a13000 - 0x7fff90b83ff4 com.apple.CFNetwork (673.4 - 673.4) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff90ceb000 - 0x7fff90dd9fff libJP2.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff90dda000 - 0x7fff90df2ff7 com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff9239b000 - 0x7fff9239cfff libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib 0x7fff923b8000 - 0x7fff923e0ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib 0x7fff927d2000 - 0x7fff927e0fff com.apple.opengl (9.6.1 - 9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff927e1000 - 0x7fff92839ff7 com.apple.Symbolication (1.4 - 129.0.2) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff92894000 - 0x7fff92897fff libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff92898000 - 0x7fff92928ff7 com.apple.Metadata (10.7.0 - 800.28) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff92aca000 - 0x7fff92d24ff9 com.apple.security (7.0 - 55471.14.8) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff92d2e000 - 0x7fff92e15ff7 libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib 0x7fff92e16000 - 0x7fff92e17fff libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib 0x7fff92e23000 - 0x7fff92fd0f27 libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib 0x7fff92fd1000 - 0x7fff92fe8ff7 com.apple.CFOpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff92fe9000 - 0x7fff93075ff7 com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff93578000 - 0x7fff93579ff7 libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff93760000 - 0x7fff93918ffb libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib 0x7fff9399e000 - 0x7fff939c3ff7 com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff939c4000 - 0x7fff93a4dff7 libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib 0x7fff93a7b000 - 0x7fff93aa2ff7 libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib 0x7fff93add000 - 0x7fff93ae8fff libkxld.dylib (2422.110.17) /usr/lib/system/libkxld.dylib 0x7fff93ae9000 - 0x7fff93aeaff7 libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib 0x7fff93bf7000 - 0x7fff93e3fff7 com.apple.CoreData (107 - 481.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff93e8f000 - 0x7fff93e99ff7 com.apple.CrashReporterSupport (10.9 - 539) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff93e9a000 - 0x7fff93eabff7 libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib 0x7fff93ee4000 - 0x7fff94052ff7 libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff94071000 - 0x7fff94095fff libxpc.dylib (300.90.2) /usr/lib/system/libxpc.dylib 0x7fff94096000 - 0x7fff94367ff4 com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff94368000 - 0x7fff94612ff5 com.apple.HIToolbox (2.1.1 - 698) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff94699000 - 0x7fff946dbff7 libauto.dylib (185.5) /usr/lib/libauto.dylib 0x7fff946dc000 - 0x7fff946e0fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib 0x7fff946e1000 - 0x7fff94711fff com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff9472b000 - 0x7fff94735fff libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib 0x7fff94736000 - 0x7fff94b17ffe libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff94b18000 - 0x7fff94b25ff0 libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib 0x7fff94b26000 - 0x7fff94b42ff7 libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib 0x7fff94c85000 - 0x7fff94cdefff libTIFF.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff94dd0000 - 0x7fff94dddfff com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff94dde000 - 0x7fff94e2cff7 com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff95026000 - 0x7fff95092fff com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff95126000 - 0x7fff95127fff liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib 0x7fff95128000 - 0x7fff95130ff7 com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff95131000 - 0x7fff95136fff com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff95329000 - 0x7fff95329fff com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff95343000 - 0x7fff953a6ffb com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff95489000 - 0x7fff9548bff7 libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib 0x7fff95d7d000 - 0x7fff95decff1 com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff95f47000 - 0x7fff95f50ff3 libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib 0x7fff95f51000 - 0x7fff95f54ff7 libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib 0x7fff95f55000 - 0x7fff95f71fff libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib 0x7fff95f72000 - 0x7fff95f72fff com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff95f73000 - 0x7fff95f7afff libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib 0x7fff95f7b000 - 0x7fff95fb3ff7 com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff95fb4000 - 0x7fff96150ff3 com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff96158000 - 0x7fff96161fff com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff96162000 - 0x7fff9617dff7 libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff9617e000 - 0x7fff961f5fff com.apple.CoreServices.OSServices (600.4 - 600.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff961f9000 - 0x7fff961f9ffd libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib 0x7fff961fa000 - 0x7fff961feff7 libheimdal-asn1.dylib (323.92.1) /usr/lib/libheimdal-asn1.dylib 0x7fff96631000 - 0x7fff9663cff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff96661000 - 0x7fff96723ff5 com.apple.CoreText (367.20 - 367.20) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff96778000 - 0x7fff96778fff com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff967a1000 - 0x7fff967b3ff7 com.apple.MultitouchSupport.framework (245.13 - 245.13) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff967b4000 - 0x7fff96827fff com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff969e7000 - 0x7fff9730732b com.apple.CoreGraphics (1.600.0 - 599.25.10.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff9748d000 - 0x7fff9748dffd com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff9748e000 - 0x7fff97578fff libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib 0x7fff977c6000 - 0x7fff977efff7 libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib 0x7fff97848000 - 0x7fff97859ff7 libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib 0x7fff9785a000 - 0x7fff9791eff7 com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff97938000 - 0x7fff9793afff libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff9793b000 - 0x7fff97a2cff9 libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib 0x7fff97a2d000 - 0x7fff97a3ffff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff97a40000 - 0x7fff97a41ffb libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib 0x7fff97b14000 - 0x7fff97b15fff com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff97b72000 - 0x7fff97d57fff com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff9800c000 - 0x7fff98025ff7 com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff98026000 - 0x7fff98156ff7 com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff98157000 - 0x7fff981c4fff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff98211000 - 0x7fff9821dff7 com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff9821e000 - 0x7fff9822bff7 libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib 0x7fff98277000 - 0x7fff9827bff7 libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib 0x7fff98305000 - 0x7fff98356ff7 com.apple.audio.CoreAudio (4.2.1 - 4.2.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff98357000 - 0x7fff9839efff libFontRegistry.dylib (127) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff9839f000 - 0x7fff983d8ff7 com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff983dc000 - 0x7fff983defff libCVMSPluginSupport.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff983df000 - 0x7fff983e0ff7 com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff983f2000 - 0x7fff9840dff7 libsystem_malloc.dylib (23.10.1) /usr/lib/system/libsystem_malloc.dylib 0x7fff989cf000 - 0x7fff989d4ff7 libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib 0x7fff989d5000 - 0x7fff98a5efff com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff98aa4000 - 0x7fff98ae9ff6 com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff98b8c000 - 0x7fff98b91fff libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib 0x7fff98b95000 - 0x7fff98baffff libdispatch.dylib (339.92.1) /usr/lib/system/libdispatch.dylib 0x7fff98c90000 - 0x7fff98f64fc7 com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff98fa7000 - 0x7fff98fbfff7 com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff98fc0000 - 0x7fff993f3ffb com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff9955d000 - 0x7fff99578ff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib 0x7fff99579000 - 0x7fff995a9fff libncurses.5.4.dylib (42) /usr/lib/libncurses.5.4.dylib 0x7fff995ac000 - 0x7fff995bcfff libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib 0x7fff999c9000 - 0x7fff99a17fff libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib 0x7fff99b7d000 - 0x7fff99b84ff8 liblaunch.dylib (842.92.1) /usr/lib/system/liblaunch.dylib 0x7fff99b85000 - 0x7fff99b87ff3 libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib 0x7fff99bb5000 - 0x7fff9a72bff7 com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 1 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: 157584 thread_create: 1 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=160.6M resident=64.8M(40%) swapped_out_or_unallocated=95.8M(60%) Writable regions: Total=75.6M written=5932K(8%) resident=9808K(13%) swapped_out=15.9M(21%) unallocated=66.0M(87%)

REGION TYPE VIRTUAL =========== ======= CG image 4K Dispatch continuations 8192K Kernel Alloc Once 8K MALLOC 41.7M MALLOC (admin) 32K MALLOC_LARGE (reserved) 128K reserved VM address space (unallocated) Memory Tag 242 12K STACK GUARD 16K Stack 65.1M VM_ALLOCATE 16.3M DATA 19.9M IMAGE 528K LINKEDIT 67.0M TEXT 93.7M __UNICODE 544K mapped file 30.6M shared memory 4K =========== ======= TOTAL 343.4M TOTAL, minus reserved VM space 343.2M

qvacua commented 10 years ago

@benfrain & @alvarofe : I'm very sorry about this, but could you please try the new snapshot? http://taewon.de/snapshots/VimR-20140831-1152.tar.bz2

(I think the reason for the crash is that I've compiled MacVimFramework with gcc and not with clang. The system Ruby and Python libraries are compiled with clang and they were probably not compatible. I hope this solves the problem...)

alvarofe commented 10 years ago

@qvacua that doesn't solve the problem at least to me

benfrain commented 10 years ago

@qvacua same problem for me using that snapshot. Tried with and without .vimrc in place and same result.

Oh and don't be sorry – I'm really looking forward to trying this and appreciate all the effort it must take. :+1:

benfrain commented 10 years ago

@qvacua out of curiosity I just downloaded MacVim and that suffers exactly the same issue. I'll try VimR on a different machine in the morning and see what happens there. Given that MacVim suffers the same I'm inclined to think there is something wrong in my setup rather than VimR.

svenax commented 10 years ago

I'll tack on to this issue, since my problem is related but maybe not the same. VimR starts fine for me but does not open any windows. I get this in my logs:

2014-08-31 23:28:10,740 VimR[32381]: objc[32381]: Class VRPlugin is implemented in both /Users/sven/Applications/VimR.app/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition and /Users/sven/Applications/VimR.app/Contents/PlugIns/Markdown.vimr-plugin/Contents/Frameworks/VimRPluginDefinition.framework/Versions/A/VimRPluginDefinition. One of the two will be used. Which one is undefined. 2014-08-31 23:28:10,846 VimR[32381]: -[MMVimManager launchVimProcessWithArguments:workingDirectory:]@747: Vim executable could not be found inside app bundle!

The second one looks very strange, since, obviously, there is no Vim executable in the app bundle, only a VimR one.

benfrain commented 10 years ago

OK, finally got VimR working. I think it was perhaps to do with the fact I had downloaded and built my own custom Vim.

Anyway, I renamed all vim related files folders e.g. .vimrc => .vimrcBU, vim => vimBU, usr/share/vim => usr/sharevimBU

Then found and deleted $HOME/Library/Preferences/org.vim.MacVim.plist

I was then able to open MacVim and in turn VimR

rmrio commented 9 years ago

Hi The same issue for me Console output: [WARN ] 20:22:42:398 VRFileItemManager registerUrl:-136 - file:///Users/me/ is already registered, incrementing consumer count Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished. [WARN ] 20:22:43:941 VRFileItemManager registerUrl:-136 - file:///Users/me/ is already registered, incrementing consumer count Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished. [WARN ] 20:22:47:612 VRFileItemManager registerUrl:-136 - file:///Users/me/ is already registered, incrementing consumer count Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished. [WARN ] 20:22:49:145 VRFileItemManager registerUrl:-136 - file:///Users/me/ is already registered, incrementing consumer count Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished. Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished.

rmrio commented 9 years ago

The latest snapshot worked on me when i delete my .vimrc

damianesteban commented 9 years ago

I'm having the same issue, I'll fish through my .vimrc and see what may be the cause.

kzahedi commented 9 years ago

vim-pathogen seems to cause the problem in my configuration

kzahedi commented 9 years ago

If I try to open a window, I get the following error message:

Fatal Python error: PyThreadState_Get: no current thread Vim: Caught deadly signal ABRT Vim: Finished.

jpotterm commented 9 years ago

I am seeing this issue when loading the YouCompleteMe plugin (on OS 10.10). As soon as I remove that plugin it works fine. I guess I'm hitting https://github.com/qvacua/vimr/issues/96