Skip to content

Instantly share code, notes, and snippets.

@leeola
Created March 3, 2011 00:50
Show Gist options
  • Save leeola/852108 to your computer and use it in GitHub Desktop.
Save leeola/852108 to your computer and use it in GitHub Desktop.
68 def process_args(args, session_started):
69 ''' Fully process any arguments given. This includes reading/creating the
70 config if it is part of the arguments.
71 '''
72
73 if session_started:
74 parsed_args = parse_started_args(args)
75 else:
76 parsed_args = parse_stopped_args(args)
77
78 logger.debug('Parsed vimbug arguments: %r' % parsed_args)
79
80 # Here we are going to fake our argument processing for the moment.
81 processed_args = {
82 'something':1,
83 'something_else':2,
84 }
85 a = 5
86
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment