7ute / symbols-list

An alternate symbol list sidebar for Atom.io text editor
GNU General Public License v3.0
32 stars 24 forks source link

Function with multi-line arguments not matched (Python) #17

Closed gnbl closed 7 years ago

gnbl commented 8 years ago

Thanks! Minor glitch for Python:

def ok(arg1, arg2):
  """I am detected"""
  print(":-)")

def nok(arg1,
  arg2):
  """I am not detected"""
  print(":-()")