ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Django Lookup Snippets

by icycandle ALL

Snippets for Django ORM Query Lookup

Details

  • 1.0.2
  • github.​com
  • github.​com
  • 10 years ago
  • 53 minutes ago
  • 10 years ago

Installs

  • Total 7K
  • Win 3K
  • Mac 1K
  • Linux 2K
Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13 Feb 12 Feb 11 Feb 10 Feb 9 Feb 8 Feb 7 Feb 6 Feb 5 Feb 4 Feb 3 Feb 2 Feb 1 Jan 31 Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

sublime-django-lookup

demo.gif

Trigger Table

These snippet's scope is meta.function-call.arguments.python, so they will only trigger in function call's parenthesis (), instead of mess up with other python meta method snippets like __init__.

Trigger Lookup
__in field__isnull=True,
__g field__gt=0,
__ge field__gte=0,
__l field__lt=0,
__le field__lte=0,
__i field__in=[],
__r field__range=(start_value, end_value),
__e field__exact=None,
__ie field__iexact=None,
__s field__search='string',
__c field__contains='string',
__ic field__icontains='string',
__iew field__iendswith='string',
__ew field__endswith='string',
__ss field__startswith='string',
__iss field__istartswith='string',
__re field__regex=r'^reg-exp',
__ir field__iregex=r'^reg-exp',
__y field__year=2020,
__mon field__month=1-12,
__d field__day=1-31,
__h field__hour=0-23,
__min field__minute=0-59,
__sec field__second=0-59,
__w field__week_day=Sun_as_1_Sat_as_7,
__dt field__date=datetime.today()