Locate find_files
line and modify it to match:
def find_files(self, config, builder=None)
Also search for the lines where find_files
is invoked; and assure we have a second argument (None
)
Locate find_files
line and modify it to match:
def find_files(self, config, builder=None)
Also search for the lines where find_files
is invoked; and assure we have a second argument (None
)
So, most of the code that sets text-properties needs to be careful to reset the modified-p flag afterwards. The best way to do that is usually by wrapping the code that sets the properties inside a with-silent-modification.
One way try to track down the culprit is by trying to undo the modification (e.g. with C-z), but of course, if the modification is not visible, undoing it won't be visible either. So instead you may want to look at C-h v buffer-undo-list RET which is the internal data used to keep track of the modifications. With luck, not only was the modified-p set but the undo-list as well, and that list will tell you what was changed. For example, that list could look like (nil (nil face nil 12345708 . 12345713)) which means that the change was to set the face property to a new value between positions 12345708 and 12345713 and that the old value of that property was nil (that's the 3rd nil in the above). Sometimes looking at the affected positions with M-: (goto-char 12345708) RET is sufficient to fi
The answer is:
pkill chrome
or
pkill chromium
There is a much cleaner workaround that won't break other apps:
# make a copy of the relevant library
mkdir ~/lib
cp /usr/lib/x86_64-linux-gnu/libxcb.so.1 ~/lib
sed -i 's/BIG-REQUESTS/_IG-REQUESTS/' ~/lib/libxcb.so.1
# set the dynamic loader path to put your library first before executing VS Code
LD_LIBRARY_PATH=$HOME/lib code
#!/bin/bash | |
ls /var/lib/initramfs-tools | \ | |
sudo xargs -n1 /usr/lib/dkms/dkms_autoinstaller start |
$ wget http://tenet.dl.sourceforge.net/project/e1000/ixgbe%20stable/4.3.15/ixgbe-4.3.15.tar.gz
$ sudo tar -xf ixgbe-4.3.15.tar.gz -C /usr/local/src
$ sudo mv /usr/local/src/ixgbe-4.3.15/src /usr/src/ixgbe-4.3.15
Create the following dkms.conf file under this directory as follows.
$ sudo vi /usr/src/ixgbe-4.3.15/dkms.conf
$ sudo gedit /usr/share/applications/google-chrome.desktop
All you need is to find out the line starts with Exec
and add as follows:
google-chrome-stabe --password-store=basic %U
./configure --with-xft --with-x-toolkit=lucid --enable-link-time-optimization --without-xwidgets
Assuming you’re running the latest dev channel release (check Software Updater if you’re not sure) you just need to head to the following URL in a new tab:
chrome://flags/#enable-native-notifications
Click the toggle menu button thing and select “Enabled“.
Install globally to use from the command line.
npm install mdpdf -g
Example usage:
mdpdf README.md - Simple convert using GitHub Markdown CSS and some additional basic stylings.