2020-04-27 06:47:36 +00:00
|
|
|
import os
|
|
|
|
from ranger.core.loader import CommandLoader
|
|
|
|
from ranger.api.commands import Command
|
2020-10-20 08:49:49 +00:00
|
|
|
from ranger.gui.widgets import Widget
|
2020-10-21 05:41:20 +00:00
|
|
|
from ranger.gui.widgets.browsercolumn import BrowserColumn
|
|
|
|
|
2020-10-20 08:49:49 +00:00
|
|
|
|
|
|
|
Widget.vcsstatus_symb = {
|
|
|
|
'conflict': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcsconflict']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'untracked': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcsuntracked']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'deleted': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcschanged']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'changed': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcschanged']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'staged': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcsstaged']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'ignored': (
|
|
|
|
'· ', ['vcsignored']),
|
|
|
|
'sync': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcssync']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'none': (
|
|
|
|
' ', []),
|
|
|
|
'unknown': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' ', ['vcsunknown']),
|
2020-10-20 08:49:49 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 05:41:20 +00:00
|
|
|
|
2020-10-20 08:49:49 +00:00
|
|
|
Widget.vcsremotestatus_symb = {
|
|
|
|
'diverged': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcsdiverged']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'ahead': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcsahead']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'behind': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcsbehind']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'sync': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcssync']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'none': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcsnone']),
|
2020-10-20 08:49:49 +00:00
|
|
|
'unknown': (
|
2020-12-01 03:36:45 +00:00
|
|
|
' |', ['vcsunknown']),
|
2020-10-20 08:49:49 +00:00
|
|
|
}
|
2020-04-27 06:47:36 +00:00
|
|
|
|
2020-10-21 05:41:20 +00:00
|
|
|
|
|
|
|
def wrap_draw_vcsstring_display(origin):
|
|
|
|
def _draw_vcsstring_display(*args, **kwargs):
|
|
|
|
vcsstring = origin(*args, **kwargs)
|
|
|
|
if vcsstring and vcsstring[0] and vcsstring[0][0] == ' ':
|
|
|
|
vcsstring[0][0] = ' '
|
|
|
|
return vcsstring
|
|
|
|
return _draw_vcsstring_display
|
|
|
|
|
|
|
|
|
|
|
|
BrowserColumn._draw_vcsstring_display = wrap_draw_vcsstring_display(BrowserColumn._draw_vcsstring_display)
|
|
|
|
|
|
|
|
|
2020-04-27 06:47:36 +00:00
|
|
|
class extracthere(Command):
|
|
|
|
def execute(self):
|
|
|
|
""" Extract copied files to current directory """
|
|
|
|
copied_files = tuple(self.fm.copy_buffer)
|
|
|
|
|
|
|
|
if not copied_files:
|
|
|
|
return
|
|
|
|
|
|
|
|
def refresh(_):
|
|
|
|
cwd = self.fm.get_directory(original_path)
|
|
|
|
cwd.load_content()
|
|
|
|
|
|
|
|
one_file = copied_files[0]
|
|
|
|
cwd = self.fm.thisdir
|
|
|
|
original_path = cwd.path
|
|
|
|
au_flags = ['-X', cwd.path]
|
|
|
|
au_flags += self.line.split()[1:]
|
|
|
|
au_flags += ['-e']
|
|
|
|
|
|
|
|
self.fm.copy_buffer.clear()
|
|
|
|
self.fm.cut_buffer = False
|
|
|
|
if len(copied_files) == 1:
|
|
|
|
descr = "extracting: " + os.path.basename(one_file.path)
|
|
|
|
else:
|
|
|
|
descr = "extracting files from: " + os.path.basename(one_file.dirname)
|
|
|
|
obj = CommandLoader(args=['aunpack'] + au_flags \
|
|
|
|
+ [f.path for f in copied_files], descr=descr)
|
|
|
|
|
|
|
|
obj.signal_bind('after', refresh)
|
|
|
|
self.fm.loader.add(obj)
|
|
|
|
|
|
|
|
|
|
|
|
class compress(Command):
|
|
|
|
def execute(self):
|
|
|
|
""" Compress marked files to current directory """
|
|
|
|
cwd = self.fm.thisdir
|
|
|
|
marked_files = cwd.get_selection()
|
|
|
|
|
|
|
|
if not marked_files:
|
|
|
|
return
|
|
|
|
|
|
|
|
def refresh(_):
|
|
|
|
cwd = self.fm.get_directory(original_path)
|
|
|
|
cwd.load_content()
|
|
|
|
|
|
|
|
original_path = cwd.path
|
|
|
|
parts = self.line.split()
|
|
|
|
au_flags = parts[1:]
|
|
|
|
|
|
|
|
descr = "compressing files in: " + os.path.basename(parts[1])
|
|
|
|
obj = CommandLoader(args=['apack'] + au_flags + \
|
|
|
|
[os.path.relpath(f.path, cwd.path) for f in marked_files], descr=descr, read=True)
|
|
|
|
|
|
|
|
obj.signal_bind('after', refresh)
|
|
|
|
self.fm.loader.add(obj)
|
|
|
|
|
|
|
|
def tab(self, tabnum):
|
|
|
|
""" Complete with current folder name """
|
|
|
|
|
|
|
|
extension = ['.zip', '.tar.gz', '.rar', '.7z']
|
|
|
|
return ['compress ' + os.path.basename(self.fm.thisdir.path) + ext for ext in extension]
|
2020-11-09 17:44:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
class fzf_select(Command):
|
|
|
|
"""
|
|
|
|
:fzf_select
|
|
|
|
|
|
|
|
Find a file using fzf.
|
|
|
|
|
|
|
|
With a prefix argument select only directories.
|
|
|
|
|
|
|
|
See: https://github.com/junegunn/fzf
|
|
|
|
"""
|
|
|
|
def execute(self):
|
|
|
|
import subprocess
|
|
|
|
import os.path
|
|
|
|
if self.quantifier:
|
|
|
|
# match only directories
|
|
|
|
command="find -L . \( -path '*/\.*' -o -fstype 'dev' -o -fstype 'proc' \) -prune \
|
|
|
|
-o -type d -print 2> /dev/null | sed 1d | cut -b3- | fzf +m"
|
|
|
|
else:
|
|
|
|
# match files and directories
|
|
|
|
command="find -L . \( -path '*/\.*' -o -fstype 'dev' -o -fstype 'proc' \) -prune \
|
|
|
|
-o -print 2> /dev/null | sed 1d | cut -b3- | fzf +m"
|
|
|
|
fzf = self.fm.execute_command(command, universal_newlines=True, stdout=subprocess.PIPE)
|
|
|
|
stdout, stderr = fzf.communicate()
|
|
|
|
if fzf.returncode == 0:
|
|
|
|
fzf_file = os.path.abspath(stdout.rstrip('\n'))
|
|
|
|
if os.path.isdir(fzf_file):
|
|
|
|
self.fm.cd(fzf_file)
|
|
|
|
else:
|
|
|
|
self.fm.select_file(fzf_file)
|
2020-11-10 09:47:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class fzf_edit(Command):
|
|
|
|
"""
|
|
|
|
:fzf_open
|
|
|
|
|
|
|
|
edit a file using fzf.
|
|
|
|
|
|
|
|
With a prefix argument select only directories.
|
|
|
|
|
|
|
|
See: https://github.com/junegunn/fzf
|
|
|
|
"""
|
|
|
|
def execute(self):
|
|
|
|
import subprocess
|
|
|
|
import os.path
|
|
|
|
# match files and directories
|
|
|
|
command="find -L . \( -path '*/\.*' -o -fstype 'dev' -o -fstype 'proc' \) -prune \
|
|
|
|
-o -print 2> /dev/null | sed 1d | cut -b3- | fzf +m"
|
|
|
|
fzf = self.fm.execute_command(command, universal_newlines=True, stdout=subprocess.PIPE)
|
|
|
|
stdout, stderr = fzf.communicate()
|
|
|
|
if fzf.returncode == 0:
|
|
|
|
fzf_file = os.path.abspath(stdout.rstrip('\n'))
|
|
|
|
self.fm.edit_file(fzf_file)
|
2020-12-07 12:25:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class fc(Command):
|
|
|
|
def execute(self):
|
|
|
|
""" Concatenate selected video """
|
|
|
|
cwd = self.fm.thisdir
|
|
|
|
marked_files = cwd.get_selection()
|
|
|
|
|
|
|
|
if not marked_files:
|
|
|
|
return
|
|
|
|
|
|
|
|
def refresh(_):
|
|
|
|
cwd = self.fm.get_directory(original_path)
|
|
|
|
cwd.load_content()
|
|
|
|
|
|
|
|
tmppath = '/tmp/concate-recording'
|
|
|
|
with open(tmppath, 'w') as f:
|
|
|
|
f.writelines("file {}".format(f.path) + '\n' for f in marked_files)
|
|
|
|
|
|
|
|
original_path = cwd.path
|
|
|
|
|
|
|
|
descr = "concatenating"
|
|
|
|
obj = CommandLoader(
|
|
|
|
args=['ffmpeg', '-f', 'concat', '-safe', '0', '-i', tmppath, '-c', 'copy', self.args[1]],
|
|
|
|
descr=descr,
|
|
|
|
read=True
|
|
|
|
)
|
|
|
|
|
|
|
|
obj.signal_bind('after', refresh)
|
|
|
|
self.fm.loader.add(obj)
|