We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here has a nice document: http://www.kunli.info/2010/09/19/xcode-vim-integration/
” update the :make command to tell Xcode to build set makeprg=osascript\ -e\ \”tell\ application\ \\\”Xcode\\\”\”\ -e\ \”build\”\ -e\ \”end\ tell\” function! XcodeClean() silent execute ‘:!osascript -e “tell application \”Xcode\”" -e “Clean” -e “end tell”‘ endfunction command! -complete=command XcodeClean call XcodeClean() function! XcodeDebug() silent execute ‘!osascript -e “tell application \”Xcode\”" -e “Debug” -e “end tell”‘ endfunction command! -complete=command XcodeDebug call XcodeDebug() ” Command-K cleans the project :noremap :XcodeClean ” Command-Return Starts the program in the debugger :noremap :XcodeDebug
The text was updated successfully, but these errors were encountered:
jwu
No branches or pull requests
Here has a nice document: http://www.kunli.info/2010/09/19/xcode-vim-integration/
The text was updated successfully, but these errors were encountered: