~ubuntu-branches/ubuntu/vivid/vim/vivid

« back to all changes in this revision

Viewing changes to runtime/ftplugin/javascript.vim

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-11-05 11:37:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20081105113743-9i4urcsm3n44mhqe
Tags: 2:7.2.025-2ubuntu1
* Merge from debian unstable, remaining changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
" Vim filetype plugin file
2
2
" Language:     Javascript
3
3
" Maintainer:   Doug Kearns <dougkearns@gmail.com>
4
 
" Last Change:  2007 Feb 21
 
4
" Last Change:  2008 Jun 15
5
5
" URL:          http://gus.gscit.monash.edu.au/~djkea2/vim/ftplugin/javascript.vim
6
6
 
7
7
if exists("b:did_ftplugin")
28
28
 
29
29
" Change the :browse e filter to primarily show Java-related files.
30
30
if has("gui_win32")
31
 
    let  b:browsefilter="Javascript Files (*.js)\t*.js\n"
 
31
    let  b:browsefilter="Javascript Files (*.js)\t*.js\n" .
32
32
                \       "All Files (*.*)\t*.*\n"
33
33
endif
34
34