This will make it much easier for the user to discover available
options. It seems like a bad thing to autoload defcustom's but not
defgroup's.
This conclusion is based on what's have been done in haskell-mode:
Here they remove their autoloads of customs because it breaks shit:
f0affb46b8
But, what they don't remove is the autoload of the group:
f0affb46b8/ghc-core.el (L35)
So I'll assume that it's safe to autoload the group. This makes it
possible for users to run M-x customize-group webpaste without having
to either do a manual require or to use the mode before configuring.
This is a good improvement for discoverability for new users.
Squashed commit of the following:
commit a870501c91bf4f96f863400b577e3c96ff1ecd60
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 11:16:07 2017 +0200
Rename webpaste-provider function to be in the "private scope" by name
commit 9dc6c8e2ce7edf88cf63c2795bfdd903d72473ba
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 11:12:22 2017 +0200
Rename webpaste-get-provider-priority to be in the "private scope" by name
commit 7e786fdb3069c2c79040179684821136906729f7
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 11:10:00 2017 +0200
Rename webpaste-return-url function to be in the "private scope" by name
commit 0dd576487b1edfe7d9522e499bedc26d4ee31b12
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 11:02:00 2017 +0200
Rename webpaste-default-lang-alist and webpaste-get-lang-alist-with-overrides to be in "private scope" by name
commit bf4ac93a04fb7c79a20f32a69fed6cd7df84ef5c
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 11:00:05 2017 +0200
Rename webpaste-provider-lang-alists to be in "private scope" by name
commit feec4b26750573d1e12b982772d3aa978a5fa678
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 10:55:35 2017 +0200
Rename webpaste-provider-separators to be in "private scope" by name
commit 7b6a0207c1921bb8f53cf18a8ab644790fa2feb9
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 10:51:15 2017 +0200
Rename tested-providers variable to be in "private scope" by name
commit e2926ffbb9feeaf1a56f54477583b52a97167e88
Author: Elis Axelsson <elis.axelsson@gmail.com>
Date: Sun Jun 11 10:44:51 2017 +0200
Switch all defun's to cl-defuns for consistency, rearrange some page breaks
If simpleclip is installed, users can send their returned URL to the
clipboard by setting webpaste/copy-to-clipboard to a non-nil value.
This change also adds webpaste/add-to-killring so that sending the URL
to the killring can be disabled, although to keep the same default
behavior the var's value is set to t by default.
The README is also updated to reflect these new options.
Due to the specifial handling for syntax, some providers would have an
extra POST parameter, which then caused some providers to reject the
paste upload completely.
This change makes it so that if a provider doesn't specify special
language rules, don't try to add a syntax POST parameter.