Andi Albrecht

Results 13 issues of Andi Albrecht

A default favicon.ico is currently missing :)

When exporting data as CSV the "Save as" dialog should default to the last used directory. This is usefull when saving more than one CSV file.

enhancement

See https://developer.gnome.org/gtk3/stable/ShortcutsOverview.html

Selection a cell in result list an pressing Ctrl+C doesn't have any effect. It should copy the cell into the clipboard.

enhancement

When an statement causes an error, the error should be highlighted in the editor, if the database backend provides enough information to find the error in the editor. The cursor...

enhancement

ATM there's no way to handle transactions or see the transaction state in the UI. The UI should - allow to start/commit/abort transactions - show changes of transaction states caused...

enhancement

When a query results contains LOBs and the number of results exceeds the visible area (so that the result view has scrollbars) an error is logged on console: ``` Traceback...

bug

It would be nice to have keyboard shortcuts to move a single statement (i.e. the current statement at cursor position) above/below the prev/next statement in an editor. That'd be an...

enhancement

About an hour ago the redis package was released in version 3.0.0. Since then I see the following error when using django-redis-cache: ``` >>> from django.core.cache import cache >>> cache.get("foo",...

In this example pyflakes reports a misleading location for an unused variable: ``` $ cat example.py def foo(): exc = None try: print('foo') except NameError as exc: print(exc) $ pyflakes...