Skip to content

Instantly share code, notes, and snippets.

@nraychaudhuri
Created November 22, 2009 06:10
Show Gist options
  • Save nraychaudhuri/240459 to your computer and use it in GitHub Desktop.
Save nraychaudhuri/240459 to your computer and use it in GitHub Desktop.
var Modes = {
INSERT_MODE:0,
COMMAND_MODE:1,
mode:0,
isInsert: function() { this.mode == this.INSERT_MODE },
isCommand: function() { this.mode == this.INSERT_MODE },
setMode: function(mode) { this.mode = mode }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment